AutoHotkey Community

It is currently May 27th, 2012, 11:32 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 153 posts ]  Go to page Previous  1 ... 4, 5, 6, 7, 8, 9, 10, 11  Next
Author Message
 Post subject:
PostPosted: May 25th, 2010, 10:28 am 
Offline
User avatar

Joined: September 8th, 2008, 12:26 am
Posts: 1048
Location: Ploieşti, RO
Thanks for the kind words. Unfortunately, that feature is taking way too long, wasting alll my resources.

As for HKC... after a thorough test on latest build under Win98SE, I found out it doesn't output any file. The log says everything went OK though, apart from one message box that is not quite human readable. I actually had the whole "speech" prepared but forgot to copy it to the USB stick so I came out here empty handed. :oops:

Regarding resource enumeration, I'd be interested in some pointers on how to enumerate a certain kind of resource in a NE (16bit) file and how to extract a resource from that file. In particular I'm talking about icons, since I resumed work on an old script of mine that appears to come out pretty nice. I'd create a topic for it if I weren't (as always) on the run; might've been of help for you, who knows...

Also, I'm stuck at how to convert and display as icon a PNG image that's been loaded into memory (through Find/Load/LockResource). However, I'm afraid I might already find the answer by the time I get back here. :lol:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 12th, 2010, 4:23 pm 
Offline

Joined: July 9th, 2010, 10:52 pm
Posts: 19
Hello there,
I downloaded HotkeyCamo to compile my .exe, so script-kiddys are not able to decompile it.

For sure, after compiling it, I searched for Bugs - and I found some.

Some people who are using my exe told me that some Hotkey's doesn't work, but I can't confirm that, so this isn't important for now. But starting with the Buttons, they're really ugly if I compile it with HotkeyCamo, do you have the same problems? But it is not the main problem, later, I'll just "gui, add, picture" instead of Buttons, so this problem will be solved.

Well, then I went on scripting it and scripted an inputbox where the user should type in a password, else the program will close.

Now the following error comes if I start the exe:
"The InputBox window could not be displayed."

Here is my code of the InputBox-part:

Code:
Code:
IniRead, RSKpws, s.ini, Optionen, RSKpws, 4

If (RSKpws=4)
{
    InputBox, RSKpw, test, test,, 225, 145,
    If not (RSKpw==start) ; start -> variable
    {
        MsgBox, string
        ExitApp
        }
    if ErrorLevel
    {
        MsgBox, string
        ExitApp
        }
}

IniWrite, 1, s.ini, Options, RSKpws



I hope somebody is able to help me with this problem, thank you =)

So far...


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 13th, 2010, 4:06 am 
Offline

Joined: October 30th, 2009, 7:32 am
Posts: 65
Location: Kerala, India
Hi TehEbil !

I tried to compile your code with HKC & it works like a charm! No problems at all. About the hotkeys & buttons, dude, HKC does nothing with the script or the script file structure. It simply "Fuzzes" the binary headers that are unique to a compiled AHK script, so that when Script Decompilers search for an AHK EXE Header, they'll be fooled that its not a Compiled AHK Script. Maybe you're working with an unsupported AHK version? :roll:

About the error message you're getting, have you removed the Dialog Node from the AutoHotkeySC.bin using ResHacker or something :oops: ? If thats the case, that Dialog is the thing which is shown as an input box. If thats not the case(probably, it is!), install the latest version of AHK & try to compile again ! :idea:

_________________
Image

Don't Take Life Too Seriously,Because In The End, You Won't Escape It Alive Anyway ;)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 13th, 2010, 3:52 pm 
Offline

Joined: July 9th, 2010, 10:52 pm
Posts: 19
Yeah, you were right, something wasn't right.

The Log of the Error:
Code:
Jobdir - R:\***\Desktop\Anderes\Keybinder\
unpack - Okay
Detected 1.0.48.5
Fuzzing build files - Success
VersionInfo - Resource job created.
Erase original resources enabled
##########RESOURCES>
HkCVI.dat Added
XPAD-ERASED - 234
##########BUILDING>
Make Exe - Complete

User: 12330225

And the Log without the Error:
Code:
Jobdir - R:\***\Desktop\Anderes\Keybinder\
unpack - Okay
Detected 1.0.48.5
Fuzzing build files - Success
##########BUILDING>
Make Exe - Complete

User: 12254237

I loaded with input the .cfg file I've created, if I do so, it won't work, but if I search manually for those, it does work. The only different between the both guis is the Camouflage Options "User" box.
I don't know if it is a bug or just my mistake, but maybe you can fix it with the informations I've given to you if it rly it is a bug.

Could it depend on VersionInfo? There I also added some details...

But thank you :)

edit:
damnit, forgot to cross out my name lol :D


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 14th, 2010, 12:34 pm 
Offline
User avatar

Joined: June 8th, 2008, 9:08 pm
Posts: 81
Location: New Europe
Yo TehEbil,

Firstly yes selecting erase interpreter resources will negate anything within your program that implicitly depends on resources such as the inputbox dialog.

Secondly you could very well have found a bug, I am not sure. could you either post or pm me the config file you are using for your build.

Or tick the Extra log info check box before you build and post the extended log.

Did you manually construct the config or did you create and save it from HkC?

Respect

Vlad


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 14th, 2010, 2:09 pm 
Offline

Joined: July 9th, 2010, 10:52 pm
Posts: 19
Well firstly I wanted to send it to you with pm, but for be sure, I'll upload those here:

http://www.autohotkey.net/~Mihawk/Config.cfg
http://www.autohotkey.net/~Mihawk/log.txt


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 15th, 2010, 9:10 pm 
Offline
User avatar

Joined: June 8th, 2008, 9:08 pm
Posts: 81
Location: New Europe
TehEbil wrote:
Well firstly I wanted to send it to you with pm, but for be sure, I'll upload those here:

http://www.autohotkey.net/~Mihawk/Config.cfg
http://www.autohotkey.net/~Mihawk/log.txt

Thankyou for those, both check out fine apart from still using the hkc_ear option to erase interpreter resources.

The problem with your buttons being 'ugly' is probably due to the xml manifest being removed (preventing visual styles) as a result of the hkc_ear option.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 16th, 2010, 12:31 am 
Offline

Joined: July 9th, 2010, 10:52 pm
Posts: 19
Well okay, if there are some more questions, please pm me :)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 3rd, 2010, 10:47 am 
Offline

Joined: January 5th, 2007, 2:18 pm
Posts: 33
Mobius,

Your HotKeyCamo is faulty :(
actually i created a software in AHK and Pack with HotKeyCamo with the option of Console Subsystem , Use default UPX options & Eraser and spread in market.

and after 3 days (Today) i am seeing the CRACK of my software and Working Correctly. :( :x :(

I created this software in 8 Months. :cry:

Can you tell me? what is this?

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 3rd, 2010, 4:04 pm 
describe the crack? HKC stops your source from being decompiled, it doesn't prevent cracks afaik.

your security system is probably faulty


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 4th, 2010, 5:25 am 
Offline

Joined: January 5th, 2007, 2:18 pm
Posts: 33
guest3456 wrote:
describe the crack? HKC stops your source from being decompiled, it doesn't prevent cracks afaik.

your security system is probably faulty


No, my security system was OK. that guy tells me the functions of my Software that was written in my software. i am sure that software is decompiled and he has the source of my software. in the GUI i written my name but in his GUI he rename and write own name which is not possible without decompiling. :cry: :( :?

and now its compiled with the default Ahk2Exe compiler of Autohotkey.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 4th, 2010, 12:01 pm 
Offline
User avatar

Joined: December 21st, 2007, 3:14 pm
Posts: 3826
Location: Louisville KY USA
you cannot actually prevent a decompile but if you searched the forum lon nuff you would know that

_________________
No matter what your oppinion Please join this discussion
Formal request to Polyethene
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 4th, 2010, 1:45 pm 
Offline

Joined: January 5th, 2007, 2:18 pm
Posts: 33
tank wrote:
you cannot actually prevent a decompile but if you searched the forum lon nuff you would know that


i searched but i did not get any topic without this topic please help me.

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 4th, 2010, 1:50 pm 
Offline
User avatar

Joined: December 21st, 2007, 3:14 pm
Posts: 3826
Location: Louisville KY USA
kaka wrote:
i searched but i did not get any topic without this topic please help me.
sigh..... lazy ass
searched "decompile" since i know one of the branch developers is Lexikos i just entered his name to narrow the search
http://www.autohotkey.com/forum/viewtop ... 138#278138

_________________
No matter what your oppinion Please join this discussion
Formal request to Polyethene
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 4th, 2010, 3:28 pm 
tank wrote:
you cannot actually prevent a decompile but if you searched the forum lon nuff you would know that


isn't that the whole purpose of this HkC software?


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 153 posts ]  Go to page Previous  1 ... 4, 5, 6, 7, 8, 9, 10, 11  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: MSN [Bot], nomissenrojb and 66 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group