scaredkys

Rebirth Panel Patches | OVH Bypass Patches

Dec 7th, 2019
1,560
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. #//////////////////////////////////////////////////////////
  2. # Credit to PacketGuard and SmallDoink
  3. # All methods are from Rebirth Panel and are complete garbage
  4. # Since kids think this is 'flexing', this is literally helping people with servers in the community
  5. # When he drops more methods, I will post the patches here. Keep up to date with this paste
  6. # Patched 12/07/2019
  7. #//////////////////////////////////////////////////////////
  8.  
  9. # All these methods are shitty AMP attacks that are supposed to be called "bypasses"
  10.  
  11. # Summary to patch all his shitty methods and some more that he will possibly release soon
  12. # Dropping all common AMP source ports
  13. iptables -t mangle -A PREROUTING -p udp -m multiport --sports 3283,37810,7001,17185,3072,3702,32414,177,6881,5683,41794,2362,11211,53413,17,1900,10001,389,137,5351,502 -j DROP
  14.  
  15. # FN-LAG Patch | Method Patch | Found on Rebirth Panel by SelfRepNetis
  16. # Port 37810 | Used by DVR IP Camera | UDP
  17. iptables -t mangle -A PREROUTING -p udp --sport 37810 -j DROP
  18.  
  19. # OVH-KILL Patch | OVH Bypass Patch | Found on Rebirth Panel by SelfRepNetis
  20. # Port 7001 | Used by Andrew File System (AFS) | UDP
  21. iptables -t mangle -A PREROUTING -p udp --sport 7001 -j DROP
  22. iptables -I INPUT -p udp -m length --length 100:140 -m string --string "nAFS" --algo kmp -j DROP
  23. iptables -I INPUT -p udp -m length --length 100:140 -m string --string "OpenAFS" --algo kmp -j DROP
  24.  
  25. # OVH-SLAP Patch | OVH Bypass Patch | Found on Rebirth Panel by SelfRepNetis
  26. # Port 17185 | Used by vxWorks//VoIP | UDP
  27. iptables -t mangle -A PREROUTING -p udp --sport 17185 -j DROP
  28.  
  29. # OVH-DOWN & OVH-DOWNv2 Patch | OVH Bypass Patch | Found on Rebirth Panel by SelfRepNetis
  30. # Port 3072 | Used by WSD | TCP or UDP
  31. iptables -t mangle -A PREROUTING -p udp -m multiport --sports 3072,3702 -j DROP
  32. iptables -t mangle -A PREROUTING -p tcp -m multiport --sports 3072,3702 -j DROP
  33.  
  34. # OVH-CRUSHv2 Patch | OVH Bypass Patch | Found on Rebirth Panel by SelfRepNetis
  35. # Literally no difference in OVH-CRUSH and OVH-CRUSHv2, just posting a method and renaming it to v2
  36. # Port 3283 | Used by ARD | UDP AMP
  37. iptables -t mangle -A PREROUTING -p udp --sport 3283 -m length --length 1048 -j DROP
  38.  
  39. # OVH-CRUSH Patch | OVH Bypass Patch | Found on Rebirth Panel by SelfRepNetis
  40. # Port 3283 | Used by ARD | UDP AMP
  41. iptables -t mangle -A PREROUTING -p udp --sport 3283 -m length --length 1048 -j DROP
  42.  
  43. # NFO-LAG Patch | NFO Method Patch | Found on Rebirth Panel by SelfRepNetis
  44. # Port 32414 | Used by PlexMediaServers | UDP
  45. iptables -t mangle -A PREROUTING -p udp --sport 32414 -j DROP
  46. # Port 177 | Used by XDMCP | UDP
  47. iptables -t mangle -A PREROUTING -p udp --sport 177 -j DROP
  48.  
  49. # NFO-CLAP Patch | NFO Method Patch | Found on Rebirth Panel by SelfRepNetis
  50. # Port 6881 | Used by BitTorrent | UDP
  51. iptables -t mangle -A PREROUTING -p udp --sport 6881 -m length --length 320:330 -j DROP
  52.  
  53. # R6-LAG Patch | Method Patch | Found on Rebirth Panel by SelfRepNetis
  54. # Port 32414 | Used by PlexMediaServers | UDP
  55. iptables -t mangle -A PREROUTING -p udp -m length --length 280:300 --sport 32414 -j DROP
Add Comment
Please, Sign In to add comment