Giter Club home page Giter Club logo

admin-finder's Introduction

Hi there ๐Ÿ‘‹

the-c0d3r

admin-finder's People

Contributors

0xdeafbeef avatar taimander avatar the-c0d3r avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

admin-finder's Issues

Not working Kali 2019.1

root@kali:/Desktop/Data/admin-finder# ls
admin-finder.py lib LICENSE log README.md robot.txt wordlist.txt
root@kali:
/Desktop/Data/admin-finder# perl admin-finder.py
String found where operator expected at admin-finder.py line 15, near """
(Missing semicolon on previous line?)
String found where operator expected at admin-finder.py line 18, near """""
(Missing operator before ""?)
Bareword found where operator expected at admin-finder.py line 20, near "logger"
(Missing semicolon on previous line?)
Bareword found where operator expected at admin-finder.py line 21, near ")
parser"
(Missing operator before parser?)
Bareword found where operator expected at admin-finder.py line 22, near ")
parser"
(Missing operator before parser?)
Bareword found where operator expected at admin-finder.py line 23, near ")
parser"
(Missing operator before parser?)
Bareword found where operator expected at admin-finder.py line 24, near ")
parser"
(Missing operator before parser?)
Bareword found where operator expected at admin-finder.py line 25, near ")
parser"
(Missing operator before parser?)
Bareword found where operator expected at admin-finder.py line 27, near ")

args"
(Missing operator before args?)

Bareword found where operator expected at admin-finder.py line 43, near "args"
(Missing semicolon on previous line?)
Bareword found where operator expected at admin-finder.py line 49, near ")
args"
(Missing operator before args?)
Bareword found where operator expected at admin-finder.py line 51, near ")

robot_handler"
(Missing operator before robot_handler?)

Bareword found where operator expected at admin-finder.py line 52, near ")
result"
(Missing operator before result?)
Bareword found where operator expected at admin-finder.py line 60, near ")
choice"
(Missing operator before choice?)
Bareword found where operator expected at admin-finder.py line 64, near ")

try"
(Missing operator before try?)

Bareword found where operator expected at admin-finder.py line 66, near ")
workerPool"
(Missing operator before workerPool?)
Bareword found where operator expected at admin-finder.py line 69, near ")
thread"
(Missing operator before thread?)
Bareword found where operator expected at admin-finder.py line 71, near ")
workerPool"
(Missing operator before workerPool?)
Bareword found where operator expected at admin-finder.py line 76, near ")

    logger"
(Missing operator before logger?)

String found where operator expected at admin-finder.py line 89, near "โ•‘ ,-. ,-| ,-,-. . ,-. ,""
(Missing semicolon on previous line?)
syntax error at admin-finder.py line 14, near "):"

Random User-Agent + Proxy support

Maybe implement a function like --random-agent to get a random User-Agent on evry new request.
Also you can implement use of proxy-servers (socks4,socks5,http) to avoid problems with IDS like CloudFlare and whatever.

NameError: name 'raw_input' is not defined

raw_input("[+] Ctrl + C to stop")

raw_input("[+] Press Enter to exit")

address = website(raw_input("[+] Website to scan : ")).address

threadCount = raw_input("[+] Enter number of threads [10]: ")

raw_input()//input()
In Python 3.x, input() replaces raw_input(), for input from the console.

Traceback (most recent call last)

I'm getting in trouble

Would you like to continue scanning?
[y]/n: y
Traceback (most recent call last):
File "adminfinder.py", line 125, in
main()
File "adminfinder.py", line 99, in main
semaphore = asyncio.Semaphore(args.threadcount)
File "C:\Python38\lib\asyncio\locks.py", line 453, in init
if value < 0:
TypeError: '<' not supported between instances of 'str' and 'int'

how about a solution???

[!] I/O Error, wordlist.txt not found

raw_input("[+] Press Enter to exit")

        currentFilename = inspect.getframeinfo(inspect.currentframe()).filename
        path = os.path.dirname(os.path.abspath(currentFilename))
        file = os.path.join(path, 'wordlist.txt')
        self.load = [i.replace('\n', '') for i in open(file).readlines()]

FileNotFoundError: [Errno 2] No such file or directory: 'robot.txt'

root@zion:~/Tools/admin-finder# python3 admin-finder.py -u https://_ _ _ _ _ _.com

โ•”โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•—
โ•‘               .          .                 โ•‘
โ•‘ ,-. ,-| ,-,-. . ,-.   ," . ,-. ,-| ,-. ,-. โ•‘
โ•‘ ,-| | | | | | | | |   |- | | | | | |-' |   โ•‘
โ•‘ `-^ `-^ ' ' ' ' ' '   |  ' ' ' `-^ `-' '   โ•‘
โ•‘                       '          the-c0d3r โ•‘
โ•šโ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•

Traceback (most recent call last):
File "admin-finder.py", line 93, in
main()
File "admin-finder.py", line 43, in main
robot_handler = RobotHandler(args.url)
File "/root/Tools/admin-finder/lib/connection.py", line 67, in init
self.keywords = [line.strip('\n') for line in open('robot.txt').readlines()]
FileNotFoundError: [Errno 2] No such file or directory: 'robot.txt'
root@zion:~/Tools/admin-finder#

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.