NINJA PINNER PINTEREST (SEO)

Here’s what Pinner will do for you: 1) Get you thousands of followers on Pinterest quickly on virtual auto-pilot.
2) Make you one of the most popular figures in your industry or niche
3) Get you an avalanche of qualified website traffic, recognition and exposure
4) Dramatically increase your product sales and profits.
5) Create an overwhelming presence on Pinterest, which boosts your social proof and credibility.

Following steps-Done:
1) Install
2) Copy CR file to directory and replace it
3) Open and bypass update (it requests for every start program)
– When skip update, program will close
– Restart program then (skip update too) then click “activation” by input any key you want (I put my 8 numbers) –> apply
– Restart
– Click add your email + password Pinterest (Program is registered)
– Run
4) Start program (this step will be suspended)
5) Wait for few hours (3-4)

Download : http://sh.st/UfD8q

|CRACKED| – FACEBOOK SOCIAL TOOLKIT (SEO)

Must have FACEBOOK SOCIAL TOOLKIT .

Get Post On Multiple Facebook Groups At Once Plugin.Post on multiple groups tool uses Facebook Graph api for making posting requests, this means your account is protected from getting banned or locked by Facebook spam detection system.


1-Group posting tool posts links with preview
2-Group posting tool works on all Facebook accounts.
3-Can posts on hundreds of groups at a time
4-Select custom delay between posting requests
5-Select a custom starting number for Facebook Groups
6-Informs you when an access token gets invalid
7-Allows you to enter custom message for posting.

8-Simple to use, easy to handle

Facebook social toolkit is far better than any other group posting tool available in the market, it is highly recommended tool.

Chrome Install: –
1. Go to >>> chrome://extensions/
2. Turn ON the developer mode.
3. Click Load unpacked extensions.
4. Choose the extracted ^ folder and press “OK”

version : – 2.2.6
download link for chrome : sh.st/UfIM5
Use any email and password for the premium tools.

pinterest follow all from google console

for(var bas=0; bas<1000;bas++){
function pinterestlikenext(){
javascript:var inputlike = document.getElementsByClassName('_ebwb5 _1tv0k _345gm coreSpriteHeartOpen');
javascript:var inputfollow = document.getElementsByClassName('_jvpff _k2yal _csba8 _i46jh _nv5lf');
javascript:var inputnext = document.getElementsByClassName('_de018 coreSpriteRightPaginationArrow');
for(var i=0; i<inputslike.length;i++){
inputlike[i].click();
inputfollow[i].click();
inputnext[i].click();}
}




setTimeout(pinterestlikenext,9000)
}

javascript:var inputlike = document.getElementsByClassName(' Button FollowButton Module UserFollowButton btn hasText notNavigatable primary rounded');
for(var i=0; i<inputlike.length;i++){
inputlike[i].click();}



Küçük işletmeler için yedekleme stratejisi

Eğer işletme ms sql kullanıyorsa yedekleme için:  yedekscript.sql diye bir dosya yarat(sqlyedek.sql) ve içine
Kullanılan araçlar:
windows task manager
notepad
özeillkler:
mssql yedek alma
mail yollama
günlük yedek alma

————————————————————————–
MSSQL KOMUT SATIRINDA YEDEKLEMEK İÇİN
BACKUP DATABASE [VT_2008] TO  DISK = N’f:\zbasic\yedek\1\VT_2008.bak‘ WITH NOFORMAT, NOINIT,  NAME = N’VT_2008-Full Database Backup’, SKIP, NOREWIND, NOUNLOAD,  STATS = 10
GO

kaydettikten sonra batch dosyası yarat ve içine
sqlcmd -S \SQLEXPRESS -i “f:\zbasic\yedek\sqlyedek.sql”
———————————————————————————
KOMUT SATIRINDAN MAIL YOLLAMAK İÇİN ONCE SM.VBS dosyası yarat gmail
‘ VBScript to Send Email Notification
‘ Usage: cscript.exe sendemail.vbs email subject text
‘ 23/Dec/2014
Sub SendEmail(ToAddress, Subject, Text)
    Dim iMsg 
    Dim iConf
    Dim Flds
 
    Set iMsg = CreateObject(“CDO.Message”)
    Set iConf = CreateObject(“CDO.Configuration”)
 
    iConf.Load -1
    Set Flds = iConf.Fields
    
    With Flds
        .Item(“http://schemas.microsoft.com/cdo/configuration/sendusername&#8221;) = “sender@gmail.com”
        .Item(“http://schemas.microsoft.com/cdo/configuration/smtpserver&#8221;) = “smtp.gmail.com” ‘smtp mail server
        .Update
    End With
 
    With iMsg
        Set .Configuration = iConf
        .To = ToAddress
        .From = “sender@gmail.com”
        .Subject = Subject
        .TextBody = Text
.AddAttachment  “C:\yedek.txt” 
        .Send
       
    End With
 
    Set iMsg = Nothing
    Set iConf = Nothing
End Sub
 
If WScript.Arguments.Count 3 Then
    WScript.Echo “Usage: cscript.exe ” & WScript.ScriptFullName & ” email subject text”
Else 
    SendEmail WScript.Arguments(0), WScript.Arguments(1), WScript.Arguments(2)
End If
kaydettikten sonra batch dosyası yarat ve 
cscript f:\zbasic\yedek\sm.vbs receiver@gmail.com YDK YDK
—————————————————————————————–

KOMUT SATIRINDAN WINRARLA SIKIŞTIRMA PARÇALI OLARAK
“c:\program files\winrar\rar.exe” a -r -v15000k “C:\Program Files\Internet Explorer\yedek” “C:\Program Files\Internet Explorer\yedek.exe”
PARÇASIZ OLARAK
“c:\program files\winrar\rar.exe” a -r “C:\Program Files\Internet Explorer\yedek” “C:\Program Files\Internet Explorer\yedek.exe”

php gmail yolla

Önce gmailinde bu özelliği aktif et https://accounts.google.com/DisplayUnlockCaptcha

 

daha sonra burdan php maileri indir https://github.com/PHPMailer/PHPMailer/ ve ftpne at

mail yollamak php kodları aşağıdadır

 

<?php
date_default_timezone_set('America/Toronto');
require 'PHPMailerAutoload.php';
require_once('class.phpmailer.php');
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded

$mail             = new PHPMailer();

$body             = "gdssdh";
//$body             = eregi_replace("[\]",'',$body);

$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host       = "ssl://smtp.gmail.com"; // SMTP server
$mail->SMTPDebug  = 1;                     // enables SMTP debug information (for testing)
                                           // 1 = errors and messages
                                           // 2 = messages only
$mail->SMTPAuth   = true;                  // enable SMTP authentication
$mail->SMTPSecure = "tls";                 // sets the prefix to the servier
$mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
$mail->Port       = 587;                   // set the SMTP port for the GMAIL server
$mail->Username   = "sender@gmail.com";  // GMAIL username
$mail->Password   = "senderpass";            // GMAIL password

$mail->SetFrom('receiver@gmail.com', 'PRSPS');

//$mail->AddReplyTo("receiver2@gmail.com', 'First Last");

$mail->Subject    = "PRSPS password";

//$mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test

$mail->MsgHTML($body);

$address = "receiver@gmail.com";
$mail->AddAddress($address, "user2");

//$mail->AddAttachment("images/phpmailer.gif");      // attachment
//$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment

if(!$mail->Send()) {
  echo "Mailer Error: " . $mail->ErrorInfo;
} else {
  echo "Message sent!";
}

?>

apk inspector

İnstalling firstt 
Windows:

  1. Download Windows wrapper script (Right click, Save Link As apktool.bat)
  2. Download apktool-2 (find newest here)
  3. Rename downloaded jar to apktool.jar
  4. Move both files (apktool.jar & apktool.bat) to your Windows directory (Usually C://Windows)
  5. If you do not have access to C://Windows, you may place the two files anywhere then add that directory to your Environment Variables System PATH variable.
  6. Try running apktool via command prompt

then put in same directory the apk u want to decompile and
run cmd and go to directory a.apk
and apktool if a.apk
and apktool d a.apk d:\a\decompiledapk

vbscript kullanarak gmail attachlı mail yolla

Aşağıdaki dosyayı önce gmail kullanıcı adını ve parolasını düzenle ve  d:\ye sm.vbs olarak kaydet ve en altta cmd satırını uygula
‘ VBScript to Send Email Notification
‘ Usage: cscript.exe sendemail.vbs email subject text
‘ 23/Dec/2014
Sub SendEmail(ToAddress, Subject, Text)
    Dim iMsg 
    Dim iConf
    Dim Flds
 
    Set iMsg = CreateObject(“CDO.Message”)
    Set iConf = CreateObject(“CDO.Configuration”)
 
    iConf.Load -1
    Set Flds = iConf.Fields
    
    With Flds
        .Item(“http://schemas.microsoft.com/cdo/configuration/sendusername&#8221;) = “fromgmail@gmail.com”
        .Item(“http://schemas.microsoft.com/cdo/configuration/sendpassword&#8221;) = “frompassword123”
        .Item(“http://schemas.microsoft.com/cdo/configuration/smtpserver&#8221;) = “smtp.gmail.com” ‘smtp mail server
        .Update
    End With
 
    With iMsg
        Set .Configuration = iConf
        .To = ToAddress
        .From = “fromgmail@gmail.com”
        .Subject = Subject
        .TextBody = Text
.AddAttachment  “C:\backup.txt” 
        .Send
       
    End With
 
    Set iMsg = Nothing
    Set iConf = Nothing
End Sub
 
If WScript.Arguments.Count 3 Then
    WScript.Echo “Usage: cscript.exe ” & WScript.ScriptFullName & ” email subject text”
Else 
    SendEmail WScript.Arguments(0), WScript.Arguments(1), WScript.Arguments(2)
End If
—————————–
komut satırında çalıştır aşağıdakini ve mail gider
cscript d:\sm.vbs togmail@gmail.com epostakonu epostaicerik