How can I make the ftp request in openbullet
-
How can I make the ftp request in openbullet
-
Here u have a example.
https://prnt.sc/rgpis1
-
The keycheck does not work. response does not find the key. Have you implemented a solution?
-
Here you can see a TCP dump of the FTP protocol.
Add a TCP block which opens the connection to the FTP server likeftp.domain.com
on port25
.
Add a TCP block that sends a message with the contentUSER <USERNAME>\r\n
.
Add a TCP block that sends a message with the contentPASS <PASSWORD>\r\n
.
The server should tell you that you're logged on.
Then you can run additional commands you need to list the files.
Finally add a TCP block that disconnects you from the server (do not leave the session open! It will fill your memory!)
-
@Ruri said in How can I make the ftp request in openbullet:
Here you can see a TCP dump of the FTP protocol.
Add a TCP block which opens the connection to the FTP server likeftp.domain.com
on port25
.
Add a TCP block that sends a message with the contentUSER <USERNAME>\r\n
.
Add a TCP block that sends a message with the contentPASS <PASSWORD>\r\n
.
The server should tell you that you're logged on.
Then you can run additional commands you need to list the files.
Finally add a TCP block that disconnects you from the server (do not leave the session open! It will fill your memory!)what is the problem? Can you help me
-
@dr-Hex8 you saved the response in another variable(response_Pass) not in <SOURCE>
-
Can you please not expose credentials publicly? We can see domain, port and credentials from your picture...
-
okey, sorry
-
@Itamai said in How can I make the ftp request in openbullet:
@dr-Hex8 you saved the response in another variable(response_Pass) not in <SOURCE>
thanks