Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. User-Agent blacklist:
  2. # Know script library
  3. python-requests/*
  4. Apache-HttpClient/*
  5. sqlmap/*
  6. Go-http-client/*
  7. Python-urllib/*
  8. Python/*
  9. libwww-perl/*
  10. Java/*
  11. WinHTTP
  12. WinHttpRequest
  13. # Known site analysis bots
  14. Wappalyzer
  15. # Non-standard beginnings
  16. ^-?$
  17. "^\("
  18. ^\'
  19. "^\ "
  20. ^\"
  21. ^-
  22. ^=
  23. ^\.$
  24. ^\\$
  25. ^\d
  26. ^MSIE
  27. ^Chrome
  28. ^Empty
  29. ^Firefox
  30. ^IE
  31. ^Internet\ Explorer
  32. # Non-standard endings
  33. Chrome$
  34. Firefox$
  35. # Repeating same stuff
  36. compatible.*compatible
  37. Gecko.*Gecko
  38. Mozilla.*Mozilla
  39. MSIE.*MSIE
  40. # Way too short user agent strings
  41. ^Mozilla$
  42. ^Opera$
  43. ^Mozilla/\d\.\d$
  44. ^Mozilla\ compatible$
  45. ^Mozilla/\d\.\d\ \(compatible\)$
  46. ^Mozilla/\d\.\d\ \(compatible;\)$
  47. # Fake mixtures of browsers
  48. Firefox.*Netscape
  49. Firefox.*Opera
  50. MSIE.*Chrome/
  51. MSIE.*Firefox
  52. MSIE.*Edge/
  53. MSIE.*rv:
  54. Opera.*Trident/
  55. # Letters instead of version numbers
  56. Chrome/([a-z]|[A-Z])\.
  57. Firefox/([a-z]|[A-Z])\.
  58. Gecko/([a-z]|[A-Z])\.
  59. ^Mozilla/([a-z]|[A-Z])
  60. MSIE\ ([a-z]|[A-Z])
  61. Opera/([a-z]|[A-Z])\.
  62. \ rv:([a-z]|[A-Z])\.
  63. # Fake Windows strings and versions
  64. Windows/
  65. Windows\ ([0-2]|[4-8])
  66. Windows\ NT\)
  67. Windows\ NT\ 0
  68. Windows\ NT\ 1\.
  69. Windows\ NT\ ([2-3]|[7-9])
  70. Windows\ NT\ 5\.([3-9])
  71. Windows\ NT\ 6\.([4-9])
  72. Windows\ NT\ 10\.([1-9])
  73. Windows\ NT\ (1[1-9]|4[0-9]|5[0-9]|6[0-9])
  74. # Invalid user agents
  75. BUILDDATE
  76. Unknown
  77. User\ Agent
  78. UserAgent
  79. User-Agent
  80. # Suspicious user agents
  81. TO-Browser/TOB
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement