Friday 29 December 2017

Virus AutoIt googleupdate.a3x a.k.a Verecno

Virus Verecno mengcopykan diri ke Flashdisk

Bukan hanya di flashdisk, tapi disetiap folder yang ia temui, akan ia buatkan file shortcut yang jika di-klik maka akan menjalankan script virus yang telah di-enkripsi.

Virus error saat tidak menemukan AutoIt3.exe

Sebenarnya virus ini bukan program yang seperti biasa, saat kita klik dua kali, maka akan berjalan (Executable). Virus utama berada pada file script dengan ekstensi "a3x", biasanya berada pada "C:\Google\googleupdate.a3x", yang hanya akan bisa dijalankan oleh "AutoIt3.exe", nama file ini bisa dirubah sekehendak si Programmer.

Sunday 24 December 2017

Script Membuat Bot Comment WordPress


ignore_user_abort(1);
set_time_limit(0);
 
$url = "http://site.com/"; //address of blog
//$postfields - array with required data
//author            - name of author
//email             - email
//comment_post_ID   - post_ID in a blog 
//comment           - comment
//url               - url
$postfields = array("action" => "submit", "author" => "test", "email" => "mymail@gmail.com", 
                     "comment_post_ID" => 14, "comment" => "Very Interesting post",
                     "url" => "http://myspamsite.com'",
                    );
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url."wp-comments-post.php");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
curl_setopt($ch, CURLOPT_USERAGENT, "User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Widows NT");
curl_setopt($ch, CURLOPT_REFERER, "http://google.com/");
curl_setopt($ch, CURLOPT_HEADER, 0);
$result = curl_exec($ch);
curl_close($ch);
?>----That's all. Of course, with this script isn't a lot of spaming, and just captcha can stoped it. These things are best done on a compiled language or python/perl.

Post written for educational purposes. The author assumes no liability for the use of the script.Source: https://www.devbattles.com/en/sand/post-287-Make+spam+bot+for+WordPress

Friday 15 December 2017

Rekam Aktifitas Linux Ubuntu dengan Simple Screen Recorder



Para VLogger atau Video Blogger umumnya membuat video tutorial menggunakan aplikasi khusus, misalnya tutorial membuat aplikasi berbasis website; aplikasi Android; dan lain sebagainya.

Adapun aplikasi yang saya gunakan unuk merekam aktifitas di Linux Ubuntu adalah Simple Screen Recorder yang dapat didonwload di:
http://www.maartenbaert.be/simplescreenrecorder/

Adapun command yang saya gunakan di Terminal Ubuntu adalah:

ryan@ryan-A785GM-AD3:~$ sudo apt-get install