![]() |
|
Alternative @ScriptFullPath - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Coding (https://sinister.li/Forum-Coding--71) +--- Thread: Alternative @ScriptFullPath (/Thread-Alternative-ScriptFullPath) |
Alternative @ScriptFullPath - M3 ™ - 09-16-2012 Code: #Include <WinAPI.au3>
;===========================================================================
; Alternative @ScriptFullPath For Crypters
; Author : M3
; Used to: Use this When Avs detecting @ScriptFullPath in your Code Stub
;===========================================================================
Func sAppPath()
Global $i , $sPath
For $i = 0 To StringLen($sPath)
$sPath = GetModuleFileNameA($i)
Return $sPath
Next
EndFunc
Func GetModuleFileNameA($sProcess)
Local $Ret = DllCall("Kernel32","ptr","GetModuleFileNameA","ptr", $i ,"str", $sPath ,"int", 256)
If (@error) Or (Not $Ret[0]) Then
Return SetError(1, 0, '')
EndIf
Return $Ret[2]
EndFuncRE: Alternative @ScriptFullPath - 1234hotmaster - 09-17-2012 Great idea, but since when is Au3 even detected? Or did skids make it detected...
RE: Alternative @ScriptFullPath - 1234hotmaster - 09-18-2012 (09-18-2012, 12:41 AM)muhammad fakir Wrote: THIS ONE FOR WHAT? I CANT GET ON THIS... Calling all potato, we don't have any clue whats going on
RE: Alternative @ScriptFullPath - muhammad fakir - 09-18-2012 hahaha nice pic lol...
|