Guest User

Untitled

a guest
Jun 25th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. b0*(1[1-9][0-9]|[2-9][0-9]{2}|1[0-9]{3}|2[01][0-9]{2}|22[0-2][0-9]|223[0-4])b
  2.  
  3. 110 - 999
  4. 1000 - 2234
  5.  
  6. 110 - 199
  7. 200 - 999
  8. 1000 - 1999
  9. 2000 - 2199
  10. 2200 - 2229
  11. 2230 - 2234
  12.  
  13. 1[1-9][0-9]
  14. [2-9][0-9]{2}
  15. 1[0-9]{3}
  16. 2[01][0-9]{2}
  17. 22[0-2][0-9]
  18. 223[0-4]
  19.  
  20. 0*(1[1-9][0-9]|[2-9][0-9]{2}|1[0-9]{3}|2[01][0-9]{2}|22[0-2][0-9]|223[0-4])
  21.  
  22. . 1 [1-9] [0-9]
  23. + [0-9]{3}
  24. + [2-9] [0-9]{2}
  25. + 2 [01] [0-9]{2}
  26. + 2 [0-2] [0-9]
  27. + 3 [0-4]
  28.  
  29. 0*(1([1-9][0-9]|[0-9]{3})|[2-9][0-9]{2}|2([01][0-9]{2}|2([0-2][0-9]|3[0-4])))
  30.  
  31. b0*(1[1-9][0-9]|[2-9][0-9]{2}|1[0-9]{3}|2[01][0-9]{2}|22[0-2][0-9]|223[0-4])b
  32.  
  33. b(?:[1][1][0-9]|1d{3}|223[0-4]|2[0-1]dd|2[0-2][0-3][0-4])b
  34.  
  35. RewriteRule ^view/([0-9]+)/?$ router.php?page=$1 [L]
  36.  
  37. <?PHP
  38. if(
  39. int($_GET['page']) > 110 &&
  40. int($_GET['page']) < 2234
  41. ){
  42. header("Status: 301 Moved PermanentlynLocation: /script1");
  43. }else{
  44. header("Status: 404 Not Found");
  45. }
  46. ?>
Add Comment
Please, Sign In to add comment