-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcleaned_snort_patterns.txt
4642 lines (4642 loc) · 92.8 KB
/
cleaned_snort_patterns.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
|2E|info|0D 0A|
GETPROPERTIES
/v22/mutabixa/
/mkplog.exe
sys.dbms_repcat_sna.refresh_snapshot_repgroup
.jsp
/autohtml.php
.lavaibrasilok.com|0D 0A 0D 0A|
VERIFY=
MAIL FROM: <Reademal.com>|0D 0A|
cfg=/../
chunked
Z|17 0D|
MKD
|00 01 87 99|
|20|archive=
Script=/webplus/webping/webping.wml
Content-Length|3A 20|0|0D 0A|
/names.nsf
s0|2D 7C 2D|
GateCrasher
/cvsweb.cgi
|00 00 00 04|
|17 08 14 13 67 0F 13 13 17 67 15 02 16 12 02 14 13 78 47 47|
User-Agent|3A| Mozilla/4.0 compatible|3B| Synapse|0D 0A|
GET /index.php?id=
.php?php=receipt
/message.php
/cgi-bin/ HTTP
|20|OS|3A 20|
?misc=
/search.dll
!@|23|
|08 02|
Content-Type|3A 20|application/octet-stream|0D 0A|
/wais.pl
User-Agent|3A| Ray-Downer|0D 0A|
mfgtst.cgi
2|00 00 00 06 00 00 00|Drives|24 00|
================
xp_enumdsn
/store.cgi
bin|00|bin|00|
|0E|MyCompany Ltd
</div><i></i><style>divoverflow|3A|hidden|3B|width|3A|1px|3B|
/main.htm
dbms_repcat.alter_site_priority
/csPassword.cgi
.cdx
HEAD/./
/ndcgi.exe
HTTP/1.1|0D 0A|Host: sstatic1.histats.com|0D 0A 0D 0A|
=0D=0A
/index.php?m=T&
NSC_USER:
/alibaba.pl
x-timer: S1580937960.346550,VS0,VE0
/InteractiveQuery.jsp
SQSPELL_APP
|0D 0A|Content-Type: application/x-www-form-urlencoded|0D 0A|
/tst.bat
/football/download/
|54 20|
dbms_repcat.alter_priority_date
private
|3B 20|Windows NT 5.0|0D 0A|Host:
|3B 20|MSIE|20|7.0|3B 20|
&username=
Expect|3A 20|
catigory=../
/updaterinfo.bin
PASS
/search
.rt
/cfcache.map
dbms_repcat.define_site_priority
b=
|FF|SMB|A2 00 00 00 00|
%72%6f%72%72%65%6e%6f
getInstance|22|AES|22|
pingAddr=
X-F5-Auth
dbms_repcat.validate_for_local_flavor
Content-Type|3A| application/x-msnmsgrp2p
/webfind.exe
sys.dbms_repcat_fla.validate_for_local_flavor
Vampire v1.2 Server On-Line.....
sys.dbms_repcat_conf.comment_on_update_resolution
|55 04 03 13 08|assylias
.mp3?rnd=
&ref=
HOST|3A|
/compcheckresult.cgi
@PJL RDYMSG DISPLAY =
expn cybercop
notification.php
|FF D8 FF EE|
exec
/viewtopic.php
/catalog.nsf
LangFile
|63 82 53 63 35|
/nosignal.jpg?
|02|
dataget|7C|
/chatheader.php
User-Agent|3A| NSIS_ToolkitOffers Mozilla
hi00
NID=
&iv=
seite=|3B|
/environ.cgi
User-Agent|3A| Uploador|0D 0A|
password1=
&pcname=
Content-Disposition: form-data|3B| name=|22|board_id|22|
/installer.php?
.mod
Serverpath=
/SWEditServlet
/temporary_listen_addresses/wsman
mailbox=
phAse zero server
&dt=
name=|22|cccount|22|
/frmCompose.aspx
C|3A 5C|
&u=
.setAttribute
&method=
&itwm=
|B4 B4|
User-Agent: Microsoft Internet Explorer|0D 0A|
dbms_repcat.drop_site_priority_site
|0B|
/cart.cgi
Translate|3A| F
ajax.microsoft.com
&js=js
dbms_repcat.generate_replication_support
|0D 0A|Accept|3A 20|text/html, image/gif, image/jpeg, *|3B| q=.2, */*|3B| q=.2|0D 0A|
index.php
User-Agent|3A 20|
BlackRAT.Data
|0D 0A|Cookie: SID1=
command_data=
I|00|P|00|C|00||00 00 00|
--use-compress-program
SAML FROM|3A|
&f=
%WINDIR%
/jquery/
/etc/passwd
MKD
|00 01 86 A1|
.htm
new_houdini|0D 0A|
|72 00 17|com.net.LoginDataPacket
/whois_raw.cgi?
Content-Type: multipart/form-data|3B| boundary=
Content-Length: 150|0D 0A|
/pfdispaly.cgi?
|3B| name=|22|data|22 3B| filename=|22|
/mainls.cs
|00 00 00 06|
/products/file_order
sys.dbms_repcat_conf.comment_on_delete_resolution
/cache/pdf_efax_
/up_d.php
<><><><><><><><><><><><><><><><><><><><><><>
/cfg?cb=
sys.dbms_repcat_sna_utl.register_snapshot_repgroup
User-Agent: Mozilla/5.0 Windows NT 6.1|3B| rv:7.0.1 Gecko/20100101 Firefox/7.0.1|0D 0A|
/?M=D
/zsh
/iissamples/sdk/asp/docs/codebrws.asp
Host|3A 20|checkip.dyndns.org
/TeleoptiWFM/Administration/AddFirstUser
sys.dbms_repcat_conf.drop_site_priority_site
/.history
/edit_action.cgi
|A0|
http:/www.acunetix.com
PK|06 06|
/nph-publish.cgi
.jpeg.exe
dbms_repcat.alter_master_repobject
|0A|Croot|0D 0A|Mprog
pt_config.inc
factory=
.xml
/34gf5y/r34f3345g
Accept-Encoding:
/nph-exploitscanget.cgi
PasswdModify=1
856|9A F3 EC 89|
/php.exe
403
gOrave
Delivery_Information_ID-
H|00|%|00|x|00|w|00 90 00 90 00 90 00 90 00 90 00|3|00 C0 00|P|00|h|00|.|00|
application/smi
dbms_offline_og.begin_flavor_change
event=
=0D=0APassword
/config/html/cnf_gi.htm
FROM|3A|
|28 00 01 00 04 00 00 00 00 00 00 00|
User-Agent|3A 20|Mozilla/4.0 compatible|3B| Win32|3B| WinHttp.WinHttpRequest.
/pals-cgi
.jpe
/wp-admin
com.opensymphony.
/scripts/iisadmin/bdir.htr
/viewcode.asp
blobheadername2=Location
/scripts/samples/search/webhits.exe
logged,true
User-Agent: http://www.pershop.com.br/
/test.bat|7C|
Login failed for user 'sa'
&uname=
servlet/.......
|22|encryptedData|22|
/AnForm2
domain.com
SIP/2.0
|FA FF FF|
/day5datanotifier.cgi
/_vti_pvt/writeto.cnf
phpbb_root_path=
v=1
HostBD=
|17 03 03|
data=
../..
image/
/pcadmin/login.asp
SEARCH|20|
data_rtt=
User-Agent|3A 20|DNS Check|0D 0A|
/ows-bin/
BM
/imagemap.exe?
utm=
RES_OK
/count.cgi
Document_Open
/cgi-bin/pingping.cgi
&fw=
connect|7C|
/khc?
echo |22| |22|
|3D|
User-Agent|3A 20|Mozilla/4.0 compatible|3B| Synapse
request
w0rm
|C0 0C 00 01 00 01|
tm=
form-data|3B| name=|22|SEG|22 0D 0A|
/library/editor/editor.php
|20|form-data|3B 20|name=|22|cname|22|
update-adobe.com
Microsoft Corp.
/post32.exe|7C|
|06|public
|00 0C 00 00 00 01 01 00|`|02|
&server=
/admin_help.php
/utilsbar/EazelBar.exe
|23|filename=*.exe
sys.ltutil.pushdeferredtxns
domain=
upper:
Connection: Keep-Alive|0D 0A|Accept: */*|0D 0A|
/phf?Q
%ebaylive%
/scripts/tools/getdrvs.exe
voicemail
text/xml
ThIs_Is_tHe_bouNdaRY_$
/document.php?rnd=
/panel/logout.php
/ezboard.cgi
Connection: close|0D 0A 0D 0A|
Microsoft Corp
/meeting_testjs.cgi
pl=
&x86=
|89 F7 29 C7 89 F3 89 F9 89 F2 AC|<|FE|
|00 01 00 00 00 00 00|
|00 01|C
Content-Length:
/index.php?
/000.jpg
/p.ashx?prd=
dbms_repcat.generate_replication_package
|42 00|
download.conf
/popkx3/popi.html
cmd=gravar&dados=
userdefined=
AVBlockTransformation
FromBase64String
ping_ip
User-Agent|3A 20|macrotest|0D 0A|
IP Address
/GlobalFunctions.php
/anony/
echo |22| |22|
/SFNofitication.dll
|00 00 78 9C|
|00|U|00|n|00|d|00|e|00|r|00 20 00|C|00|o|00|n|00|s|00|t|00|r|00|u|00|c|00|t|00|i|00|o|00|n|00|<|00|/
/getConfigExportFile.cgi
.setAttribute|22|codebase|22|,
Referer: HTTP/1.0|0D 0A|
RN
|E0 00 00 00 00 00|
|3A|irc|2D|sinkhole|2E|cert|2E|pl
Host|3A| search.namequery.com|0D 0A|
CFUSION_DECRYPT|28 29|
/qgHUDRZiYhOqQiN/kESklNvxsNZQcPl.php
CFUSION_ENCRYPT|28 29|
BRASIL
|4D|
UID=
Upgrade: websocket
&hid=
|7B 08 2A 2A|
/cgiproc
ps=|22|split|22 3B|asd=function
/read.php3
current=|7C|
/seo.php?username=MAREYOLE&format=ptp
|00 00 00 01 00 00 00 01|
/re/
_reguestguid
/upload.cgi
|29 0D 0A|Host:
sys.dbms_repcat_conf.alter_priority_raw
.jpg
/cgforum.cgi
COPY
/generate.cgi
/content/img/awards.jpg
|50 4B 03 04|
/cfdocs/examples/cvbeans/beaninfo.cfm
: no-cache|0D 0A 0D 0A|
/pfdispaly.cgi
Accept|3A| */*
apply.cgi
/shoutbox.php
/dnewsweb.cgi
dbms_repcat.drop_column_group_from_flavor
Accept: */*|0D 0A|
describe
&serial=
Referer|3A| http|3A|
|EB 23|3|C0 88|F|FA 89|F|F5 89|6
User-Agent|3A 20|DataCha0s
sess-=
java
&file=
|02 82|
/telg/sv/sv.php
auto_prepend_file
/sensepost.exe
%relay_soxid%
GET
=%40eval
sys.dbms_internal_repcat.enable_receiver_trace
build.tgz
data
/bizdb1-search.cgi
Content-Type: text/json|0D 0A|
newpage=../
User-Agent|3A|ICQ
.0
/secid_canceltoken.cgi
/Sites/Samples/Knowledge/Search/ViewCode.asp
bin/sh
Subject|3A 20|=?utf-8?B?SGF3a0V5ZSBMb2dnZXIg
.png?ID=
/authors.pwd
User-Agent: RUpdate|0D 0A|
User-Agent: Mozilla/5.0 Windows NT 6.1|3B| WOW64|3B| rv:23.0 Gecko/20100101 Firefox/23.0
|22|time|22|:
Referer|3A 20|
/agentrunner.nsf
|22|encryptedKey|22|
|FF|SMB|75 00 00 00 00|
.setAttribute|22|code|22|,
|59 0D B1 E7 67 23 51 BA 5B 5D 52 33 91 0D 09 7F|
command_data
PORT
/global.cgi
|00 05 F7|u
HELLO|0A|
|04 00 00 00|
HHV1:
|08|D|00|B|00|S|00|Q|00|0|00|0|00|1|00|7|00|
/logon.aspx?Id=
User-Agent:
/php/gate.php
&builddate=
Content-Length: 13|0D 0A|
cord.php
|3A 3A 3A 3A 3A 3A 3A 3A 00 3A 3A 3A 3A 3A 3A 3A 3A|
.rp
/password.cgi.tmp
&intip=
/screens/
gd2|00 00 02|
Digits=
|22|alias|22|:|22|apx|22|,|22|prefix|22|:|22||22|,|22|suffix|22|:null,|22|suggestions|22|:,|22|responseId|22|:|22|15QE9JX9CKE2P|22|,|22|addon|22|: |22|
/nph-test-cgi
alter
|3B| MSIE 6.0|3B 20|
id=Z29nbw==
Ahhhh My Mouth Is Open
sname=
|22|country|22|
|0D 0A|Accept: text/html, */*|0D 0A|Accept-Encoding: identity|0D 0A|User-Agent: Mozilla/5.0 Windows NT 6.1|3B| WOW64|3B| rv:12.0 Gecko/20100101 Firefox/12.0|0D 0A 0D 0A|
&OS=
letter=../
/chamjavanv.inf?aapf/login.jsp?=
/login1.asp
/dcforum.cgi
/iisadmpwd/anot
/scripts/Fpadmcgi.exe
/ezadmin.cgi
/log.nsf
User-Agent: curl/
|18 03 03 00 40|
VirtualDirectory
sms
/Home/
dbms_repcat.add_priority_char
ssdp|3A|discover
sys.dbms_repcat_mas.comment_on_repobject
/jsproxy
%x %x
/register.php?
uid=0|28|root|29|
height=
dbms_repcat_instantiate.drop_site_instantiation
RQS
|0D 0A|Connection: close|0D 0A|Cache-Control: no-cache|0D 0A|Content-Length:
?wp-usr-prop
%PDF-
&xVal=
/csNews.cgi
dbms_repcat.comment_on_repgroup
/bbs/search.asp
c|3A 5C|
wok5VLG.6
/ie-error.gif?action=utility
/mod/lookfashon.jpg
/bb/index.php
&state=
dbms_repcat.set_local_flavor
s|00|p|00|_|00|s|00|t|00|a|00|r|00|t|00|_|00|j|00|o|00|b|00|
android
dns|7C|
.setAttribute|22|archive|22|,
/api/
/photoLibrary/?user=
_helper.jar
/QualityCheck/ni6.php
SB
pty.spawn|22|/bin
convert|28|
/ecscripts/ecware.exe
-2013.zip|0D 0A|
/calendar_admin.pl?
antiddos|7C|
/ROADS/cgi-bin/search.pl
&outro=
/w3tvars.pm
/admin.php3
sys.dbms_repcat_conf.drop_unique_resolution
READY|0A|
/_private/orders.htm
QDAwMD
/query?version=
/philboard.mdb
sys.dbms_repcat_sna.drop_snapshot_repobject
/awstats.pl
|00 01 87 88|
JOIN #test1|20 7C 0D 0A|JOIN #test2|20 7C 0D 0A|JOIN #test3 null|0D 0A|
|01 00 00 00 3C|
/bsml.pl
/?.jsp
/webkit_login_records
|6C 6A CD CF B8 41 3F F8 00 00 00 00 00 00 00 00 01 10 04 01 00 00 00 00 00 00 00 1C|
/home.htm
NAMENAME
shadow
|43 47 47 47 42 67 47 47 43 47 47 47 4F 67 47 47 43 47 47 47 43 67 47 47 43 47 47 47 4E 67 47 47|
/write
method=
../../../
.idq?
Host:
&kernel=
/MarkQuality455/developerbuild.php?b=
k=
/rp?v=
|0D 0A|TP=
LOCK
HTTP/1.0|0D 0A|
token=
/cgi-bin/wizReq.cgi
&tr=
document.domain|28|
V|0E|1|C0 B0 3B 8D|~|12 89 F9 89 F9|
/photos/photo.asp
AUTHENTICATE
argc=
|0E 00 0D 00 00 00 00 00 00 00 00 00 00 00 00 00 00|
|7C|ge|7C|t|7C|SM|7C|S|7C|
/dmp/api/
dbms_repcat.define_column_group
&url=
btst=
|3B 20|MSIE|20|
.php?id=
HTTP/1.1 200 OK|0D 0A|Content-Length:
/ftp.pl
|FF FF FF FF 00 00|
STATUS
.
/newdesk
sys.dbms_repcat_conf.add_priority_nvarchar2
Host: www.fedex.com|0D 0A|
|01|
/~root
<html><head><meta http-equiv=|22|refresh
&system=
resolve|7C|
/Libs.zip
/calisto/upload.php
user_dnstools_administrator=true
|10 00|
|0D 0A|Upgrade: tcp/1|0D 0A|
Host|3A| a.topgunnphoto.com
%HOMEPATH%
|00 01 86 A2|
|0D 0A 0D 0A|murica
dbms_repcat.add_priority_raw
/token/token.html HTTP/1.1|0D 0A|User-Agent:
8_=_8
tmpl=
/get32.exe
/_mem_bin/
file=
/ftp.pl?
info=
|00 00 00 00|EEEEEEEEEEEE
/newsdesk.cgi
/echo.bat
Accept-Encoding|3A 20|gzip, deflate|0D 0A|
307
masscan/1.0
name=Forums
hwid=
dbms_offline_og.begin_instantiation
MS_T120|00|
button=
/config.conf
/vpasswd.cgi
|01 00 10|
&e=
&vers=
|0D 0A|Connection: Close|0D 0A 0D 0A|
|8C|
add.php?apikey=
CHANNEL|0B|
|00 00 00 00 00|
/collect.php
|00 02|
tRNS
/users.xml
Firefox/3.
|22|params|22 3A|
sys.dbms_repcat_sna.create_snapshot_repschema
/cgicso
&build_time=
CiWebHitsFile=
HTTP/1.1|0D 0A|Connection: Keep-Alive|0D 0A|Accept: */*|0D 0A|User-Agent: Mozilla/
/sql/db_type.php
%00
dbms_repcat.add_priority_varchar2
h|FF D5 FF D4 FF F5 8B F5 90|f1
/apply.cgi
/../
syn|7C|
dbms_repcat.alter_priority_number
>|00 03 00|
action=add
example.com
|22|installation_session_id|22|
|0D 0A|Yes|0D 0A FF FE 08 FF FD|&
|00 00 00 01 01 00 00 18|
/files.pl
/search?gid=
rotina=
/multidiff.cgi
BUILD=
/infosrch.cgi?
Accept-Encoding: gzip, deflate|0D 0A|
Asc
/exchange/root.asp?
EE|A8 C6|3
|00|pipe.class
/imagens/
|7A 8D 9B DC|
_0000=
|F2 F7 94 75 16 7E 8E 15|
/postinstall.php?
/updateb.xml?
Winnet Client
unknown version
HTTP/1.1|0D 0A|Accept: */*|0D 0A|Content-Type: application/x-www-form-urlencoded|0D 0A|User-Agent: Mozilla/5.0 Windows NT 6.1|3B| WOW64|3B| rv:25.0 Gecko/20100101 Firefox/25.0|0D 0A|Host:
/bb-histsvc.sh
/ab2/
/book.cgi
exec|7C|
|00 01 86 A9|
/nsiislog.dll
Proxy-Authorization: Basic |0D 0A|
|13|BitTorrent protocol
|3B 20|sv|3A|
FROM_TZ
Set-Cookie|3A 20|mediaplanBAK|3D|
documentName=
&aid=
%LOCALAPPDATA%
Connection:
qual=
iemi=
HTTP/1.1|0D 0A|Host|3A 20|update|2E|
|00|J
/admin/host.php
/pollit/Poll_It_SSI_v2.0.cgi
/monitor.php?
&av=
rewt
clk=
|80 00 07 00 00 00 00 00 01|?|00 01 02|
/forum.php
sleep
User-Agent: Mozilla/3.0 compatible|3B| Indy Library|0D 0A 0D 0A|
Connect.php?id=
lib.inc.php
vrfy
* Doly trojan v1.5 - Connected.
Accept|3A 20|*/*
username%5d=
/wwwboard/passwd.txt
who=
op=admin_enter
ACON
f=
/bin/sh
TWN
&user_pass=
Content-Encoding
|D5 B1 F8 24 89 28 15 47|
User-Agent|3A 20|UAC/1.0.0 Android
die|7C|
/visadmin.exe
sys.dbms_rectifier_diff.differences
/elections.php?
/news/index.php HTTP/1.1|0D 0A|Content-Type: application/octet-stream|0D 0A|Host:
|0D 0A|Cache-Control: no-cache|0D 0A 0D 0A|
stream/
%
dbms_repcat.purge_master_log
|7B 22|line1|22 3A 22|
/notify.php
root|00|root|00|
/admin.pl
/formmail
|00 01 87 8B|
|04|note
X-CA-
..
.cmd|22|
|0D 0A|aid:
/installers/
|03 01|
SF
dbms_repcat.validate_flavor_definition
|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|
|5C|
Content-Length: 0|0D 0A|
UIDL
sys.dbms_repcat_conf.add_priority_number
Gh0st
-dauto_prepend_file
&spfail=
|FF|SMB|A0 00 00 00 00|
|23|
&proj_id=
User-Agent|3A 20|NSIS_Inetc Mozilla|0D 0A|
gpu=
&sk1=
/info.php?act=
&WIN=
HHV3: 61456
/minerd.exe
/index.php?email=libpurple_XMPP
|5C|object|5C|objemb|5C|*|5C|objclass Package
file|3A|javascript|3A|
08|02 01 00 04 06|public|A4||06|
md5=
conteudo=
pccsmysqladm/incs/dbconnect.inc
&string=
&code=
&card=
|05 29 00 00 00|
%PUBLIC%
/mailit.pl
GET / HTTP/1.1|0D 0A|User-Agent: Mozilla/4.0 compatible|3B| MSIE 6.0|3B| Windows NT 5.1|3B| SV1|3B| .NET4.0C|3B| .NET4.0E|3B| .NET CLR 2.0.50727|3B| .NET CLR 3.0.4506.2152|3B| .NET CLR 3.5.30729|0D 0A|Host: ip-addr.es|0D 0A|Cache-Control: no-cache|0D 0A 0D 0A|
Accept-Charset: ISO-8859-1,utf-8|3B|q=0.7,*|3B|q=0.7|0D 0A|
id
sys.dbms_repcat_mas.generate_replication_package
User-Agent
/proxy.cgi
/image_download.php?uid=
/autodiscover
&assunto=
Chr
LvtfOWStYYHNbdiE15aNsOyg
/gate.php?
xp_filelist
sys.dbms_repcat_conf.alter_site_priority
msg-
dba_tables
a=YWZmaWQ9MDUyODg
,|22|installerBehavior|22|:|22|hideOnInstall|22|:
Cookie|3A 20|SESSIONID=
device_id=
0b8pre|0D 0A|
/webalizer/
/recv_android.php
1234
&rd=
expn
/Site Server/Admin/knowledge/persmbr/
RW
sys.dbms_repcat_mas.purge_master_log
/perl.exe
|30 00 00 00 2B FF 4B F4|
?wp-start-ver
dbms_repcat.create_master_repgroup
dbms_repcat.comment_on_delete_resolution
L|00|o|00|g|00|i|00|n|00| |00|f|00|a|00|i|00|l|00|e|00|d|00| |00|f|00|o|00|r|00| |00|u|00|s|00|e|00|r|00| |00|'|00|s|00|a|00|'|00|
/pics/_vti_cnf/00.inf
ADMINISTRATOR
/friends.php
/YaBB
/upload/module
USERHOST
|FF D8|
08x|0D 0A|
option=com_joomlaupdate
|0D 0A 0D 0A|
YIQAAABiBoMAAAYrBgEFBQKgggBTMIFQoA4wDAYKKwYBBAGCNwICCqM
sys.dbms_repcat_mas.create_master_repgroup
|8A 10 80 C2 67 80 F2 24 88 10|
wh00t!
datapost|7C|
/cgi-bin/
/ddicgi.exe
Accept-Encoding: none|0D 0A 0D 0A|
/redirect.exe
/_admin/
XXXX%.172u%300|24|n
|5C 00|P|00|I|00|P|00|E|00 5C 00|
/data
|3B| MSIE 7.2|3B 20|
MODE
/offers_new?v=
data|05|bytes
mdsys.md2.validate_geom
nc.exe
/w1/feed.php
ls%20-l
/ultraboard
/cgiforum.pl
/alibaba.pl|7C|
/_private/register.htm
administrator/index.php
HHV2:
POST
r|00|a|00|i|00|s|00|e|00|r|00|r|00|o|00|r|00|
_truthcolor=
<!--/ded509-->
&a4=
|16 03|
NICK
Host:
Pinging from Del
all_tables
userfile_name=
dynamicimage=../
cid=
ScMM
|22|children|22|:|22|name|22|:
|00 01 86 E4|
|50 00 00 00|
/cached_feed.cgi
isAdmin=
pc=
iPod
ExecuteFile
Username:
.asp.
dbms_repcat.create_mview_repobject
/simplestguest.cgi
cybercop
|A6 1C C0 13 A6 1C C0 13 A6 1C C0 13 A6 1C C0 13|
dbms_repcat.refresh_snapshot_repgroup
autodiscover.json
.rtf
&gpu=
/technet-support/library/online-service-description.php
|23|list
filename=site.jar
xp_regwrite
ctxsys.driddlr.subindexpopulate
newserver
/calender_admin.pl
like |22|%|22|
Bn|3D|
takethis
HTTP/1.0|0D 0A|
/inst?
Accept: text/html, */*|0D 0A|Accept-Encoding: identity|0D 0A|
/arquivo/cookie.txt
/cybercop
page=
/servlet/con
in my heart of heart.|0D 0A|
free|28 29 3A| warning|3A| chunk is already free
/blog-trabajos/n65dj17i1836
/info.php?message=
&aff=
|01 00 00 00 41|
propfind
/pbserver/pbserver.dll
/BRS_03B_haveBackupFile_fileRestore.html
RNL
|DC C7 5E 47 A0 DB D2 51|
.exe|20|HTTP/1.
b2inc=
|FF ED 00 00 00 00|
forwarded=
/beta/order.php
/tasks
/CSMailto.cgi
public/Check_Exist.php
DELE
.zip
/prok/
&bgload=
.php?file=Cobra_
Host|3A 20|j.maxmind.com
MERA RTU
/contextAdmin/contextAdmin.html
/Setup.php
/msadc/samples/
|0A 00 00 01 85 04 00 00 80|root|00|
/android/sms/index.php
Email=
/calisto/listenyee.php
Login failed
|3B| name=|22|arquivo|22 3B| filename=|22|C:|5C|
|22|type|22 3A 22|
Content-Length: 0
Insane Network vs 4.0 by Suid Flow|0A 0D|www.blackcode.com|0A 0D|r00t|23|
%TEMP%
ProClient.Data
local_login=1
/fp4areg.dll
&adm=
ADMROCKS
ABCDEFGHIJKLMNOPQRSTUVWABCDEFGHI
rtsp|3A|//
/bb-hostsvc.sh
CODE=
Content-Type|3A| application/x-icq
|00 DC 5E AE E6 3E EC 78 EC|
dbms_repcat.add_update_resolution
/mrtg.cgi
dbms_repcat.comment_on_column_group
Host|3A| search64.namequery.com|0D 0A|
|55 04 03 0C 10|ina.themanyag.zm
/?gws_rd=cr
Version_Mapper
60gpBAK=
Linux|20|
/new/get_tree.php?
CONNECT
MAIL FROM|3A|
%7b
.air
<ScRiPt>prompt
dba_tablespace
Results of |27|
<meta name=|22|token|22| content=|22 A4|
/html/docu.php
/cfdocs/exampleapp/
/01/WindowsUpdate
.gif?action=
|40 74 6B 85 FF 7C 65 7F 04 85 F6 74 5F 8B 03 8B 40 04 8B 4C 18 38 0F B7 54 18 40 89 55 EC 8B 41|
.php?chave=xchave&url|3D 20 3D 7C 3D 20|
Cache-Control|3A 20|no-cache
Content-Length|3A|
p=
taskId=
.php?
WhatsUp - A Netw
/ncommerce3/ExecMacro/orderdspc.d2w
/soft
firstname=
|26|w=
act=
/scripts/proxy/w3proxy.dll
/whois_raw.cgi
&type=
|74 00 13|Lcom/net/LoginData
|7C 30 7C A1 40 23 40 21|
Loader|0D 0A|
gnt_ub=86|5C 3B|gnt_sb=18|5C 3B|usprivacy=1YNY|5C 3B|DigiTrust.v1.identity=
charset = |22 22|
/scripts/uploadn.asp
HTTP/
/viralator.cgi
User-Agent: Install|0D 0A|
/tasks.php
/exair/search/
/cmd.php
MDTM
|86 19 00 00 04 01 00 00|
ctr=
archive=
/sendtemp.pl
STAT
cat=
/perl?
foo=
|0D 0A|User-Agent: Mozilla/5.0 Windows|3B| U|3B| Windows NT 6.1|3B| pt-BR|3B| rv:1.9.2b5 Gecko/20091204 Firefox/3.6b5|0D 0A 0D 0A|
/cgi-bin/op.cgi
&usid=
-soa %p
action=Apply
|00 01 86 A3|
/log.php?
/entry/exe/runinfo
/11/form.php
|0F|
/nstelemetry.adp
/cgimail
sys.dbms_rectifier_diff.rectify
/in.cgi
/msadcs.dll
/software.php?
&education=
reportId
?fort=
attachment|3B|
authorized_keys
audio/x-scpls
return |22|DIRECT|22|
HTTP/1.1
|0D 0A|builddate:
Command completed
/setup/
.dib
waitPingqry
UA-CPU|3A 20|
fname=
Accept|3A 20|application/x-shockwave-flash, image/gif, image/jpeg, image/pjpeg, */*|0D 0A|
action=soundex
db_mysql.php
././
|04|ping
dbms_repcat.register_mview_repgroup
?DeleteDocument
2|7C|http://
%PDF-1.
|55 04 06 13 02|US
|DC 90 01 08|
&features=
|FF FA|'|00 00|