[Source] Down-/Upload via FTP

Posts 112 of 12 · Page 1 of 1
[Source] Down-/Upload via FTP
[PHP]void Upload(wchar_t *Domain, wchar_t *User, wchar_t *Pass, wchar_t *FTPPath, wchar_t *HDDPath)
{
HINTERNET hOpen, hConnection;

hOpen = InternetOpen(L"Everything", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);

hConnection = InternetConnect(hOpen, Domain, INTERNET_DEFAULT_FTP_PORT,
User, Pass, INTERNET_SERVICE_FTP, 0, 0);

FtpPutFile(hConnection, HDDPath, FTPPath,
FTP_TRANSFER_TYPE_BINARY, 0);

InternetCloseHandle(hConnection);
InternetCloseHandle(hOpen);
}
void Download(wchar_t *Domain, wchar_t *User, wchar_t *Pass, wchar_t *FTPPath, wchar_t *HDDPath)
{

HINTERNET hOpen, hConnection;

hOpen = InternetOpen(L"Everything", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);

hConnection = InternetConnect(hOpen, Domain), INTERNET_DEFAULT_FTP_PORT,
User, Pass , INTERNET_SERVICE_FTP, 0, NULL);

FtpGetFile(hConnection, FTPPath, HDDPath,0,0,
FTP_TRANSFER_TYPE_BINARY, 0);

InternetCloseHandle(hConnection);
InternetCloseHandle(hOpen);
}[/PHP]

The needed datas are not crypted so u can see they with a debugger

found ur own way to make it unvisibel

have fun with it
i already have a good loader/vip authent its EPIC (made by Zoom)
Quote Originally Posted by Mr.Magicman View Post
i already have a good loader/vip authent its EPIC (made by Zoom)
u can use that ingame^^ this is very helpfully(for noobs)
if they understand that, they can make some things with it ^^
Lol nice release.. you could put // to inform the newbies on what is what
Use it to download a text file then display in your test function /

Thats what ima use it for /me
Too bad MPGH doesn't allow stuff using the internet. :P

Good for VIP though.
Quote Originally Posted by Crash View Post
Too bad MPGH doesn't allow stuff using the internet. :P

Good for VIP though.
Good for VIP, then again, MPGH doesn't allow stuff that auto-updates. I'd consider this a hazy area.


Quote Originally Posted by Crash View Post
Too bad MPGH doesn't allow stuff using the internet. :P

Good for VIP though.
Good for VIP, then again, MPGH doesn't allow stuff that auto-updates. I'd consider this a hazy area.
Ahh Nice Release DUde Very Nice
Hardly dont know what this but good job
Quote Originally Posted by Casey95 View Post
Hardly dont know what this but good job
Names In The Title../
Posts 112 of 12 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?