From 8b65b763ad8254c6806d79b7742f95353142cc21 Mon Sep 17 00:00:00 2001 From: lgandx Date: Fri, 9 Sep 2016 02:31:58 -0300 Subject: [PATCH] minor fix --- poisoners/LLMNR.py | 6 +++--- poisoners/LLMNR.pyc | Bin 0 -> 2906 bytes poisoners/MDNS.py | 8 ++++---- poisoners/MDNS.pyc | Bin 0 -> 2200 bytes poisoners/NBTNS.py | 7 +++---- poisoners/NBTNS.pyc | Bin 0 -> 2171 bytes poisoners/__init__.pyc | Bin 0 -> 158 bytes 7 files changed, 10 insertions(+), 11 deletions(-) create mode 100644 poisoners/LLMNR.pyc create mode 100644 poisoners/MDNS.pyc create mode 100644 poisoners/NBTNS.pyc create mode 100644 poisoners/__init__.pyc diff --git a/poisoners/LLMNR.py b/poisoners/LLMNR.py index dca224d..8e19514 100644 --- a/poisoners/LLMNR.py +++ b/poisoners/LLMNR.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -# This file is part of Responder -# Original work by Laurent Gaffie - Trustwave Holdings -# +# This file is part of Responder, a network take-over set of tools +# created and maintained by Laurent Gaffie. +# email: laurent.gaffie@gmail.com # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or diff --git a/poisoners/LLMNR.pyc b/poisoners/LLMNR.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6e7711634b6ce999336f1e761ef2f66815fbaccb GIT binary patch literal 2906 zcmcImUvCpf5TCuX6DK$!1vQWgl?zo`LyHYOv=vkck`xjYob;T62o2_Pw@%JE-#NEy z2vs5;(zmJ~sgL~vmHJ8g0ovcpIsB=F`T}R~-tO$|&g}g8&AES1jMJBYJ`8F2xOm?} zGrysW@K=-&ZM+&Q+E7AwC~>Ig(uPZl`CLj$)GO0QxtNzI8KL#4Ouu0JC`BVOsE{6` z?l^T%P;N-SnpWvZkxFsSDCshFAfv(?j))#@Ot2QM+88v7|H0F&DGV*oS61#f{r2tD z6r@ui%?C#NdT*eOT?*1D(Rs1PdoG3CJ7^`e1vGOJoh9l*qM`#R;LyyG!}pmvEC?lv zN_3#;%xtSx26xl&0XOI4Dqb-f#S`diOtmBEjLiq3mEj=m2jOn9#3G}>26hyKX3*0s zI;~+y(wRk!8ar7}H+1rCV^N!3oAn!}w{@JvSmngqQd(->}5q6q^$9EmdF;~=eg*rm#*}DbX!~G5~Ep9%cLzorD z9i?5D@{FuZ;R49DIHe-Q5srjtjEQ%bVAE)vy@Y)oho;}8pLoT!ml6ICBSO%ykD7)} z($F?+*=J`5`a~)bQOFg?28!y%Nd6w_iW45<>@~%VHnU@(2 zVkE}q+MK!Q@&0Uhmi7$v^UPoiN8)Tqv^&~cY__~YY1vXY_ueJqN29%`2$3CDEz1(q zSPpyr%f}icdY*cnEXUn)?M2!KaboH{$lI4;~2qmzu$$FHUxGz$Y7`GF*^u1=Aw5VC z&mq4h03=z*rsO7Bhos6f78rjWzHbwrQUd3FFedRgXYXvUc8-Vd7N$wlt{L$ z$B|`3`hlwxQk>Q3$P0uQ8J_|JvSWdaTo{{k zy#3B{^X~WlrnlPi9-uZbnDBEQ3^8Zz+guAt%x4{QGFR<1xTH|!#npTP0k+hz5Upp7 zS4)|(@IFx}XS9PT0>m2021z(b0;@#| zEEm~K9D-6UDq7&zYn(GW>G+Iu1y2?h*I;LHeIJVCda(kmTG9c^vaHMxIvsp(VBvii zb(Raf$LGvdjLhdOLY-7q_nay@=K)Yvb>6AsU2`s|aW#X{9Oma#jr}c_Znrr`+HDEA zb{q9;kYMUx1H)^TW%S-YMtsKED`@h~1noFhd{)VyLnjf&Ur5@T!dsjjt&9mRDZ@S^ zs{ro6q8LdS`qRAs0(YNr_XV?Xe9p&d)Lzd-=!d$InDV>AcsDs841aW1Rn?h7kr;Q! L%43sNb=v(GiS~hG literal 0 HcmV?d00001 diff --git a/poisoners/MDNS.py b/poisoners/MDNS.py index d877bf4..298b527 100644 --- a/poisoners/MDNS.py +++ b/poisoners/MDNS.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -# This file is part of Responder -# Original work by Laurent Gaffie - Trustwave Holdings -# +# This file is part of Responder, a network take-over set of tools +# created and maintained by Laurent Gaffie. +# email: laurent.gaffie@gmail.com # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or @@ -60,4 +60,4 @@ class MDNS(BaseRequestHandler): Buffer.calculate() soc.sendto(str(Buffer), (MADDR, MPORT)) - print color('[*] [MDNS] Poisoned answer sent to %-15s for name %s' % (self.client_address[0], Request_Name), 2, 1) \ No newline at end of file + print color('[*] [MDNS] Poisoned answer sent to %-15s for name %s' % (self.client_address[0], Request_Name), 2, 1) diff --git a/poisoners/MDNS.pyc b/poisoners/MDNS.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aceafb3862b3e7441079c8935a2493acf65dddef GIT binary patch literal 2200 zcmcIl>uwuW5T3K^OYA!20wNTZvQdd-0*%`!tq?*Lxgb*17;9}&NU2sE?{TuudN(!6`eBP(&$HnjG_?iQd z2>*%_qWyw*C{Z+WXx|~l&s<7e8kK0jRGdqcl&Ke$=@*z(D5?lkrKn2Up@E`kh9&1j z-|f$^>u$4#YvOV{Pnim_~`ti)S-y-aSN^!lq-!f@d5M4WNaG(yzldTw(Vo9ILTC)Ud zSTV-)L($92SsDQUzzNs*< ztj~v_35J9iu3hUW8|ju#K56Y}b8NGdmKhz~PeNl`zBVTruFluj9$X$;Cs}L|L2g>y zo3)cuI|o0VFgH4oZt*os5Ek@-e9Z!g z#$+H5lF4w$?@GK<1CE)SzRkKTu)=@w&6O4Y9>>D(kV;J+T^Bn6rIcHUx;JCm$Kw(gZi)7zq5gucz zFhRHp_bFVCWpOPbjv=a1RHt(nk)*Pdy3JcCSKBaMU*A}JfWP%e597by!bm|z<}t{N z%`{9-f70G4i}a@+x96odT`}Ilskd_f;UnV>vfNuSAA9j(n&okN7`rf)iNnJAQRfU~ zR2c)vVcJ{owQ!o zJBrP2W-Mw+)K6k~4Zswxq)Aj^XbuP_CjSC4+%GP)= zz{>&L4R0`Zek8A+55bwce1oc}iZiDg?mbm<8mgf-oCbbBz|7xqWF<)xf`B_61cI9& z0N}<6j{YiKTt+I~O)Xr1e(GD^Clw_xRi77<6tXMb>+1Xmo%;|LpyRiRwx(z@Z_%-h m6C)Tbx_{yHO4K(MuoUXEqBKt!@P-@SaOUwss5`Yrt^6;`EzHvZ literal 0 HcmV?d00001 diff --git a/poisoners/NBTNS.py b/poisoners/NBTNS.py index b8e1e99..a140606 100644 --- a/poisoners/NBTNS.py +++ b/poisoners/NBTNS.py @@ -1,7 +1,7 @@ #!/usr/bin/env python -# This file is part of Responder -# Original work by Laurent Gaffie - Trustwave Holdings -# +# This file is part of Responder, a network take-over set of tools +# created and maintained by Laurent Gaffie. +# email: laurent.gaffie@gmail.com # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or @@ -14,7 +14,6 @@ # # You should have received a copy of the GNU General Public License # along with this program. If not, see . - import fingerprint from packets import NBT_Ans diff --git a/poisoners/NBTNS.pyc b/poisoners/NBTNS.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bfd16d154ca9028a6960f9e2271d4d7223f24270 GIT binary patch literal 2171 zcmcIlZBOJ>6h3{K85jl_7DL>G#PVUy>9()aVynsZ&xX;ZkZ*(%_vNqT`bWOAI@6 zke>a6$M0B}>IR6veHcA2RJHK{8{4rGfp|3%O7F)-k_%a#@r@@vraWAX9Srq5h$iY= z)VE2tNjns3m&V44#HNiKSmMwX4mU~Ha9AE2U$dl|?rY zNhU>4m(qkxbKI2BIx8-eW)--bW*3^JKQH3^`e*T7nFx3XZE+4(KH$(^Cq#5JNS|zY8SKaWjPRCk$=|R73xZt!>$^fZ|1SmuvZPs zA`$ZAt&iR;y2CP4WdZ-XFvSnIhSz!-f?mdX2KgeY416D3CIV!&EZ2I7(E@Eusd38O zzeOwOf17V{GzCD143j~hO+jd!FgRg&v3~|9uW<{Y=o9^5)5M~QP1>R{uHvm=GI2=T zhRI>bJRCc811?}iHS={OTR(=Ig-B-g4%E1k%K}=Z2}I# zR{$s#>jKF?DVd{5jdY8Wc^cR5+=1@Yp*2?4q#K9!_KQC0MJ}gFoyHKc#KuFYHMXh0 zOuEgxShJJHa4T7u32(h6T(2147b#gXC6c=Ll#QX6jNjVQ4=90r$iODTlC(K2Yf!bf z&u1&Mv*!J?SK5NN9JLPDwVy45W}8efD6^TkAc|*JJNpAEGDtX`g4!DZ)t`IF{-z(E zsSU6_Qr@&Vc<0w1R%t2mdFEvoMJZ7r8KXnBKu({Wd8f0xpH_FjuOOLtaiM+^(o>?) zo-SvCig+M+-ccymtOwnX)Z;tlyv|}@eBae?}3r7({B#MmTQ3QOBax4Re<{OjE?432ufRo9_nmVc5=ARI}$0l*WhcQQ2RSDy) uh9=zA4=3PiFj*bxELVZaI?MaNj5SgEqKeCx3}eM9ZrN?CZ8e?wrGEjW*U)|d literal 0 HcmV?d00001 diff --git a/poisoners/__init__.pyc b/poisoners/__init__.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ad673b69d6fb4b0f7e9413cba612c8b16a74b04 GIT binary patch literal 158 zcmZSn%*%EC)Wz^*1}I1X8Urs}8WSm?W? z7H5~_7w8w~Ch6uR7MJJ;r4|?D=cS|;8R;1yIQj+onZ@~esYS*5@$s2?nI-Y@dIgmw V96+;da`RJ4b5iX