Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Flyff > Flyff Hacks, Bots, Cheats, Exploits & Macros
You last visited: Today at 00:45

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[source & release] Bow hack (webzen only)

Discussion on [source & release] Bow hack (webzen only) within the Flyff Hacks, Bots, Cheats, Exploits & Macros forum part of the Flyff category.

Reply
 
Old 06/10/2020, 00:11   #46
 
cookie69's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 627
Received Thanks: 686
Quote:
Originally Posted by CrxTer View Post
What do you exactly mean by "Open a command prompt and go to the location where you have the binaries (BowHack.dll and ManualInject.exe)" What do I have to type into the command prompt?
cookie69 is offline  
Thanks
1 User
Old 06/18/2020, 07:23   #47
 
elite*gold: 0
Join Date: Jul 2009
Posts: 22
Received Thanks: 2
Checking the file via URL on Virustotal it shows it's clean
But downloading the zip, uploading it to Virustotal and checking it again, it shows 17 findings (most of them say Trojan)

How come?
admi is offline  
Old 06/18/2020, 12:06   #48

 
netHoxInc's Avatar
 
elite*gold: 2
Join Date: Jan 2008
Posts: 778
Received Thanks: 983
Quote:
Originally Posted by admi View Post
Checking the file via URL on Virustotal it shows it's clean
But downloading the zip, uploading it to Virustotal and checking it again, it shows 17 findings (most of them say Trojan)

How come?
Because it injects a dll into another program, therefore heuristic scans will trigger
netHoxInc is offline  
Thanks
1 User
Old 06/18/2020, 20:13   #49
 
cookie69's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 627
Received Thanks: 686
Quote:
Originally Posted by admi View Post
Checking the file via URL on Virustotal it shows it's clean
But downloading the zip, uploading it to Virustotal and checking it again, it shows 17 findings (most of them say Trojan)

How come?
you have the source code
injectors are detected by your anti-vir because a malware can inject itself inside other processes that's why injection code is detected by default.
But you are absolutely right to ask
cookie69 is offline  
Thanks
1 User
Old 06/19/2020, 01:32   #50
 
elite*gold: 0
Join Date: Jul 2009
Posts: 22
Received Thanks: 2
Was more confused about the fact that checking the same file via 2 different methods results differently but thank you for the answers ♥
admi is offline  
Old 07/20/2020, 13:46   #51
 
elite*gold: 0
Join Date: Jan 2011
Posts: 28
Received Thanks: 17
I applaud the sharing of the source but ill give some points to clean up the code a bit and make it more modern:
Code:
#define MODULE_NAME L"Neuz.exe"
should be
Code:
const wchar_t module_name[] = L"Neuz.exe";

Code:
BOOLEAN bHackRunning = TRUE;

void MySleep(double d_delay);
DWORD dwMainWinThread, dwBowHackThread;
HANDLE hBowHack, hMainWin;
HMODULE g_hModule;
HWND g_hWnd;
BOOLEAN bowAlwaysStrongAttack;

bool AlreadyHooked = false;
ULONG_PTR gRWXBuf = NULL;
ULONG_PTR gSendActMsgOrig = NULL;
ULONG_PTR gStrongBowEnabled = NULL;
you are using both g and g_ prefixes while either are them are fine but why not be consistent,also if you are not using them out of the scope(cpp file) you should prefix them with "static".


Code:
		hMainWin = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)&MainWin, g_hModule, NULL, &dwMainWinThread);

		// Bow hack thread
		hBowHack = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)&thBowHack, NULL, NULL, &dwBowHackThread);
calling CreateThread directly is a bad practice better use _beginthread or even much better std::thread.


Code:
WaitForSingleObject(hBowHack, INFINITE);
could be easly replaced with thread::join.
Code:
void LogErrorMessageA(const char* pszFormat, ...) {
	static char s_acBuf[2048]; // this here is a caveat!
	va_list args;
	va_start(args, pszFormat);
	vsprintf(s_acBuf, pszFormat, args);
	OutputDebugStringA(s_acBuf);
	va_end(args);
	MessageBoxA(g_hWnd, s_acBuf, "Error", MB_ICONERROR);
}
use stream buffers no real need for va args here same with the other functions.


Code:
	char sig[] = "\x5E\x85\xC0\x74\x17\x50\xA1\x00\x00\x00\x00\x8B\x88\x00\x03\x00\x00\x51\xB9";
	char mask[] = "xxxxxxx????xx?xxxxx";
static const should be used here and in FindActionMoverOffset().


Code:
/*
	Replace Sleep(ms) function
*/
void MySleep(double d_delay)
{
	DWORD start = GetTickCount();
	DWORD control = GetTickCount();
	while (control < (start + d_delay)) {
		control = GetTickCount();
	}
}
WHY?
not sure why you would use that over Sleep but even as is it is written badly
Code:
void MySleep(const DWORD dwDelay)
{
	const DWORD dwStart = GetTickCount();
	DWORD dwControl = dwStart ;
	while ((dwControl - dwStart) < dwDelay ) {
		dwControl  = GetTickCount();
	}
}

The shell code itself is really not needed just use a standard _thiscall with a tiny __asm block of whatever you have to recover from the stack, then you would not need that horrific executable page code.
miniman06 is offline  
Thanks
1 User
Old 08/23/2020, 14:55   #52
 
elite*gold: 0
Join Date: Apr 2013
Posts: 133
Received Thanks: 11
Doesnt work anymore since last patch.

flyff will close if you try to inject the .dll
Play4life is offline  
Old 11/06/2020, 05:10   #53
 
elite*gold: 0
Join Date: Jul 2013
Posts: 2
Received Thanks: 0
hi can u update? now cant used bcz flyff is update /sad
drazula is offline  
Old 11/13/2020, 00:42   #54
 
elite*gold: 0
Join Date: Aug 2016
Posts: 18
Received Thanks: 1
bow hack is not working update it pls
amaterasubj is offline  
Old 12/04/2020, 00:08   #55
 
elite*gold: 0
Join Date: Nov 2020
Posts: 3
Received Thanks: 0
cookie , please could you update it ? thanks
cyan95 is offline  
Old 12/04/2020, 13:39   #56
 
elite*gold: 0
Join Date: Nov 2020
Posts: 6
Received Thanks: 0
Quote:
Originally Posted by cyan95 View Post
cookie , please could you update it ? thanks
It's working for me, dunno what ur talking about. Just use your head and stop behaving like a baby
Kamsahamnida is offline  
Old 12/04/2020, 14:29   #57
 
'P!nkBeatzz''s Avatar
 
elite*gold: 0
Join Date: May 2012
Posts: 1,489
Received Thanks: 255
Quote:
Originally Posted by cyan95 View Post
cookie , please could you update it ? thanks
This source has been released with a reason.
The reason is to learn how things are done and to update it yourself.
'P!nkBeatzz' is offline  
Thanks
1 User
Old 12/04/2020, 14:51   #58

 
netHoxInc's Avatar
 
elite*gold: 2
Join Date: Jan 2008
Posts: 778
Received Thanks: 983
Yep. When i was showing omdi the specific game function he decided it to be open source. If learning those stuff is not in ur interest or you feel too unskilled, you will most likely wait for someone to spoonfeed you.

Alternatively you might need to pay someone to do it for you, or buy an application that is supporting it. (*cough* Anubis *cough*) (sry for the semi ad, but its topic related)

Even tho updating this tool is as easy as finding ur players level or name... The source is given so its up to you.

Cheers, net
netHoxInc is offline  
Thanks
2 Users
Old 12/05/2020, 03:38   #59
 
elite*gold: 0
Join Date: Apr 2019
Posts: 1
Received Thanks: 0
Can someone make some video tutorial please?
cheesekimbap is offline  
Old 12/05/2020, 10:02   #60

 
netHoxInc's Avatar
 
elite*gold: 2
Join Date: Jan 2008
Posts: 778
Received Thanks: 983
Quote:
Originally Posted by cheesekimbap View Post
Can someone make some video tutorial please?
At this point i feel like #requestclose if TE does not want to update.
netHoxInc is offline  
Thanks
1 User
Reply

Tags
bow, flyff, hack


Similar Threads Similar Threads
[Release & Source] Flyff Webzen Bow Hack
06/21/2020 - Flyff Hacks, Bots, Cheats, Exploits & Macros - 69 Replies
When using this hack you will always attack with charged bow. Usage: BINARIES REMOVED Hotkeys: BINARIES REMOVED
[Buying] &&&&&&&&&KAUFE STEAM ACCOUNT! &&&&&&&&&
06/07/2013 - Trading - 1 Replies
Hallo, bin nicht hier um groß zu traden,sondern möchte einen Steam Account kaufen. Fakten: Biete maximal 60€ PaySafeCard Es sollten viele kleine Spiele sowie COD enthalten sein COD 7-9 sind Pflicht! Kein VAC/TAC/Valve o.Ä Bann!
&&&&&&&&&KAUFE STEAM ACCOUNT! &&&&&&&&&
06/07/2013 - elite*gold Trading - 0 Replies
Hallo, bin nicht hier um groß zu traden,sondern möchte einen Steam Account kaufen. Fakten: Biete maximal 60€ PaySafeCard oder kann es auch zu egold machen Es sollten viele kleine Spiele sowie COD enthalten sein COD 7-9 sind Pflicht! Kein VAC/TAC/Valve o.Ä Bann!
[WEBZEN Star Movie] Ways of Having Fun With Webzen Games (Archlord)
10/16/2010 - Archlord - 15 Replies
Please go to Youtube Watch it, Press like ( On youtube ) and leave a comment is for a contest YouTube - Ways of Having Fun With Webzen Games (Archlord) Por favor vayan a Youtube, en youtube veanlo, denle en gustar y dejen un comentario positivo es para un concurso
bow force or bow light or bow cold.. pure str..
05/19/2010 - Silkroad Online - 3 Replies
bow fire force .. more mana ,res,anti debuff,holy ring,and debuffs bow fire light..speed,parry ratio,ghost walk.. bow fire cold..best phy def,ice shield,ice imbue good at high lvls.. which one would you take and why not the others.. im confused



All times are GMT +2. The time now is 00:45.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.