dirsearch.js

dirsearch js版

  1. // ==UserScript==
  2. // @name dirsearch.js
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description dirsearch js版
  6. // @author wuuconix
  7. // @match *
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=wuuconix.link
  9. // @grant none
  10. // @include *
  11. // ==/UserScript==
  12.  
  13. const dict = `/swagger-resources
  14. /v2/api-docs
  15. /api/v1
  16. /%3f/
  17. /readme.txt
  18. /readme.md
  19. /robots.txt
  20. /swagger.yaml
  21. /swagger.json
  22. /uploadify/index.php
  23. /sonar
  24. /monitoring
  25. /gateway
  26. /test
  27. /.vscode/sftp.json
  28. /.idea/workspace.xml
  29. /.idea/compiler.xml
  30. /.idea/vcs.xml
  31. /.idea/modules.xml
  32. /.idea/inspectionProfiles/Project_Default.xml
  33. /error.log
  34. /config.json
  35. /wp-json
  36. /wp-json/wp/v2/users
  37. /api-docs
  38. /arthubdam.zip
  39. /setup.php
  40. /content
  41. /v3/api-docs
  42. /v2/api-docs
  43. /v1/api-docs
  44. /.svn/wc.db
  45. /actuator
  46. /api/index.html`.split("\n")
  47.  
  48. window.search = () => {
  49. dict.forEach(pathname => {
  50. const url = `${location.origin}${pathname}`
  51. fetch(url).then(res => {
  52. res.ok && console.log(url)
  53. }).catch(() => {})
  54. })
  55. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址