Advertisement
Guest User

Untitled

a guest
Apr 9th, 2017
8,173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. Note:
  2. morCrawler evaluates 'Group 1' of the regular expression
  3.  
  4.  
  5. Standard Combo
  6. ((?:[a-zA-Z0-9]{5,}):(?:[a-zA-Z0-9]{5,}))
  7. Looks for and saves pattern: User:Pass
  8.  
  9.  
  10. Email Combo
  11. ([a-zA-Z0-9._%+-]+@(?:[a-zA-Z0-9-]+\.)+[a-zA-Z]{2,6}:(?:[a-zA-Z0-9]{5,}))
  12. Looks for and saves pattern: Email:Pass
  13.  
  14.  
  15. Numeric Combo
  16. (\b[0-9]{5,}:[0-9]{5,})
  17. Looks for and saves pattern NumericUser:NumericPass
  18.  
  19.  
  20. URL Combo
  21. ([hHtTpPs]{4,5}://[a-zA-Z0-9]{5,}:[a-zA-Z0-9]{5,}@[a-zA-Z0-9._%+-/]+)
  22. Looks for pattern of type: http(s)://User:Pass@SomeSite.com
  23. Saves: http(s)://User:Pass@SomeSite.com
  24.  
  25.  
  26. URL Combo
  27. [hHtTpPs]{4,5}://([a-zA-Z0-9]+:[a-zA-Z0-9]+)@
  28. Looks for pattern of type: http(s)://User:Pass@SomeSite.com
  29. Saves: User:Pass
  30.  
  31.  
  32. URL Email Combo
  33. ([hHtTpPs]{4,5}://[a-zA-Z0-9._%+-]+@(?:[a-zA-Z0-9-]+\.)+[a-zA-Z]{2,6}:(?:[a-zA-Z0-9]{5,})@[a-zA-Z0-9._%+-/]+)
  34. Looks for pattern of type: http(s)://Email:Pass@SomeSite.com
  35. Saves: http(s)://Email:Pass@SomeSite.com
  36.  
  37.  
  38. URL Email Combo
  39. [hHtTpPs]{4,5}://([a-zA-Z0-9._%+-]+@(?:[a-zA-Z0-9-]+\.)+[a-zA-Z]{2,6}:(?:[a-zA-Z0-9]{5,}))@[a-zA-Z0-9._%+-/]+
  40. Looks for pattern of type: http(s)://Email:Pass@SomeSite.com
  41. Saves: Email:Pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement