This post is by a banned member (P0D) - Unhide
OP 06 June, 2022 - 02:50 PM
(This post was last modified: 04 May, 2023 - 10:09 PM by P0D. Edited 1 time in total.)
Reply
BEEP BEEP
-- transmission received --
Hello earthlings, I wrote a quick script that can check multiple FTP servers for folders/files. I do this to have initial information about the server
and what can be expected to be found there. It outputs the data in a txt file + in the terminal. The input is a text file with the format:
127.0.0.1:21 or if you have a username + password: 127.0.0.1:21:username:password separated by a new line to have multiple.
Screenshot
Download
Hidden Content
You must register or login to view this content.
This post is by a banned member (JefferyBobby) - Unhide
04 August, 2022 - 12:37 AM
Reply
This post is by a banned member (ph03n1x69) - Unhide
19 December, 2022 - 10:25 PM
Reply
Thanks hope it will be mass checker
This post is by a banned member (oGatao) - Unhide
02 May, 2023 - 05:47 PM
Reply
working? i want check it! thank you
This post is by a banned member (P0D) - Unhide
OP 04 May, 2023 - 10:11 PM
Reply
(02 May, 2023 - 05:47 PM)oGatao Wrote: Show Moreworking? i want check it! thank you
It does actually ^^ have used it recently for fun. I have updated the download link because I saw it wasn't working anymore.
Also in the near future I will share a new shodan scrape with around 50k open FTP ip addresses included that can be used.
This post is by a banned member (oGatao) - Unhide
04 May, 2023 - 10:16 PM
Reply
(04 May, 2023 - 10:11 PM)P0D Wrote: Show More (02 May, 2023 - 05:47 PM)oGatao Wrote: Show Moreworking? i want check it! thank you
It does actually ^^ have used it recently for fun. I have updated the download link because I saw it wasn't working anymore.
Also in the near future I will share a new shodan scrape with around 50k open FTP ip addresses included that can be used.
can u share it with me? lol
:)
ftp:user:pass
make a .txt with name dados_teste.txt and use it :)
u make this in python:
Code:
import ftplib
def test_ftp_connection(host, username, password):
try:
ftp = ftplib.FTP(host)
ftp.login(username, password)
ftp.quit()
return True
except:
return False
if __name__ == '__main__':
# Lendo os dados de teste do arquivo texto
with open('dados_teste.txt', 'r') as f:
dados_teste = f.read().splitlines()
# Abrindo arquivo de saída
with open('resultado_teste.txt', 'w') as f:
for dados in dados_teste:
# Separando os dados de cada linha
host, username, password = dados.split(':')
# Testando a conexão FTP
if test_ftp_connection(host, username, password):
msg = f'{host}:{username}:{password} funcionando!\n'
else:
msg = f'{host} não!\n'
f.write(msg)
print(msg)
This post is by a banned member (P0D) - Unhide
OP 04 May, 2023 - 10:33 PM
Reply
(04 May, 2023 - 10:16 PM)oGatao Wrote: Show More (04 May, 2023 - 10:11 PM)P0D Wrote: Show More (02 May, 2023 - 05:47 PM)oGatao Wrote: Show Moreworking? i want check it! thank you
It does actually ^^ have used it recently for fun. I have updated the download link because I saw it wasn't working anymore.
Also in the near future I will share a new shodan scrape with around 50k open FTP ip addresses included that can be used.
can u share it with me? lol
:)
ftp:user:pass
make a .txt with name dados_teste.txt and use it :)
u make this in python:
Code:
import ftplib
def test_ftp_connection(host, username, password):
try:
ftp = ftplib.FTP(host)
ftp.login(username, password)
ftp.quit()
return True
except:
return False
if __name__ == '__main__':
# Lendo os dados de teste do arquivo texto
with open('dados_teste.txt', 'r') as f:
dados_teste = f.read().splitlines()
# Abrindo arquivo de saída
with open('resultado_teste.txt', 'w') as f:
for dados in dados_teste:
# Separando os dados de cada linha
host, username, password = dados.split(':')
# Testando a conexão FTP
if test_ftp_connection(host, username, password):
msg = f'{host}:{username}:{password} funcionando!\n'
else:
msg = f'{host} não!\n'
f.write(msg)
print(msg)
What you mean by share? the ftp ip addresses? Like I said I will share them on this site in the near future, also downloading other shodan info.
And I updated the link to the script, it checks anonymous login of with username:pass. It will spit out available files in the output.txt file so you
can take a look which connection has interesting files.
This post is by a banned member (oGatao) - Unhide
04 May, 2023 - 11:54 PM
Reply
(04 May, 2023 - 10:33 PM)P0D Wrote: Show More (04 May, 2023 - 10:16 PM)oGatao Wrote: Show More (04 May, 2023 - 10:11 PM)P0D Wrote: Show MoreIt does actually ^^ have used it recently for fun. I have updated the download link because I saw it wasn't working anymore.
Also in the near future I will share a new shodan scrape with around 50k open FTP ip addresses included that can be used.
can u share it with me? lol
:)
ftp:user:pass
make a .txt with name dados_teste.txt and use it :)
u make this in python:
Code:
import ftplib
def test_ftp_connection(host, username, password):
try:
ftp = ftplib.FTP(host)
ftp.login(username, password)
ftp.quit()
return True
except:
return False
if __name__ == '__main__':
# Lendo os dados de teste do arquivo texto
with open('dados_teste.txt', 'r') as f:
dados_teste = f.read().splitlines()
# Abrindo arquivo de saída
with open('resultado_teste.txt', 'w') as f:
for dados in dados_teste:
# Separando os dados de cada linha
host, username, password = dados.split(':')
# Testando a conexão FTP
if test_ftp_connection(host, username, password):
msg = f'{host}:{username}:{password} funcionando!\n'
else:
msg = f'{host} não!\n'
f.write(msg)
print(msg)
What you mean by share? the ftp ip addresses? Like I said I will share them on this site in the near future, also downloading other shodan info.
And I updated the link to the script, it checks anonymous login of with username:pass. It will spit out available files in the output.txt file so you
can take a look which connection has interesting files.
ohh right, im searching for ftp access with url access for check some projects
|