Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Programming and Coding

Programming and coding tips, help and solutions...

  1. zombie123
    Started by zombie123,

    Hello was just wondering how you would change the background color in IsTools i went on top and clicked Project Then Setup Options Then Appearance then there you will see Background color i tried changing the color or even clicking on Custom and tried doing my own color i want it then clicking Apply then clicking OK - now when i go to Compile Setup then try out the exe the color is still white for the background if anyone can help me do it proper i would really appreciate it

    • 2 replies
    • 7.7k views
  2. Teddy Rogers
    Started by Teddy Rogers,

    As the title says, a PE Header Editor with full source code. Maybe of interest to someone here... PE_Header_Editor_2.0.rar Ted.

    • 10 replies
    • 6k views
  3. ShadowRayz
    Started by ShadowRayz,

    K, so i wrote a small masm exe to see how it'll look when its compiled, kinda same..the only major difference was that in the source i did an IF condition. when i debugged the .exe the .if eax == null.........endif became OR EAX,EAX, i didn't really find anything about that in google for some reason...can anyone explain how that OR works and if i can use it as a replacement for the .if .endif somehow. Thanx

    • 4 replies
    • 9.9k views
  4. rendari
    Started by rendari,

    Ran across these two tricks while browsing through the Woomann blogs forum. http://www.woodmann.com/forum/showthread.php?t=11318 http://www.woodmann.com/forum/showthread.php?t=11451 http://www.woodmann.com/forum/showthread.php?t=11078 Haven't seen those before, figured I might bring it to your guys' attention before a protection author does Cheers!

    • 4 replies
    • 4.2k views
    Shub-Nigurrath
  5. nilsen
    Started by nilsen,

    Hi! Can anybody help me ? i need to use bassmod.dll or minifmod.dll i wonder how the code should look like

    • 7 replies
    • 5.5k views
  6. alaphate
    Started by alaphate,

    LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { switch(message) { case WM_CREATE: sndPlaySound("hello.wav", SND_FILENAME | SND_ASYNC); return 0; }I know how to stop it by sndPlaySound("", SND_FILENAME | SND_ASYNC); //sending NULL string but how to pause and resume it? Thanks a lot for helping me.

    • 2 replies
    • 3.7k views
  7. FLeXuS_GReeN
    Started by FLeXuS_GReeN,

    Someone might help to create an nfo scroll in asm because I have no idea, and will be great if someone gives me a hand please! thank's.....

    • 2 replies
    • 6k views
  8. alaphate
    Started by alaphate,

    I can calculate the result by pressing <enter>, however, It will doesn't work after I click the application's tray icon. Thanks a lot, my buddies Attachment is my project. Below is my source code. #include <windows.h> #include <stdio.h> #include "resource.h"HINSTANCE hInst; NOTIFYICONDATA nid; bool isMin = false;BOOL CALLBACK DlgProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { char szBuf[15]; double a, b, result; switch(message) { case WM_INITDIALOG: //create tray icon nid.cbSize = sizeof(nid); nid.hIcon = LoadIcon(hInst, "MYICON"); nid.uCallbackMessage = WM_USER + 1; nid.hWnd = hwnd; nid.uID = WM_USER + 2; str…

    • 8 replies
    • 4.8k views
  9. afre_N
    Started by afre_N,

    who know delphi code to encrypt directory?? help me please..

    • 4 replies
    • 3.9k views
  10. langxang
    Started by langxang,

    MASM source of MiniDBG debugger.rar

    • 0 replies
    • 3.3k views
  11. alaphate
    Started by alaphate,

    Any buddy can help me to tackle this problem? Thanks a lot. Attachment is my source files. o10.zip

    • 4 replies
    • 4.4k views
  12. Fungus
    Started by Fungus,

    I am patching an old game, I have reversed the winmm.dll calls for playing audio from the cd, and I know how to get out the track number and convert it to a filename. I want to replace the playing routines with bass.dll so I can play the .wav rips instead. I need to be able to play, stop and loop (and checking the position of the current play to loop it). anyone can help with this? I tried the examples that come with bass , but they .wav player doesn't seem to work on my system (no sound). I plan to write a nocd tut for this game when I am done patching and testing, so all help much appreciated. =) Cheers

    • 9 replies
    • 4.9k views
  13. high6
    Started by high6,

    I was wondering how do packer makers make stubs? Do they program a unpack stub in say C++ then get the bytecodes and have the unpacker use the bytecodes as a base stub?

    • 6 replies
    • 4.1k views
  14. ShadowRayz
    Started by ShadowRayz,

    Sometimes keygens and websites use that feature, in a program you got a textbox and the text like moves to the left and it deletes a character everytime, but then the text reappears from the other side, thats where im stuck.. i can make it disappear to the left but i have no idea how to make it reappear again... that's the code i wrote so far Public back As StringPrivate Sub Command1_Click() If (Timer1.Enabled = True) Then Timer1.Enabled = False Else Timer1.Enabled = True End If End SubPrivate Sub Form_Load() Timer1.Enabled = False Timer1.Interval = 80 End SubPrivate Sub Timer1_Timer() If (LenB(Text1.Text) <> 0) Then back = Text1.Text back = Mid$(back, 2, Len(Tex…

    • 1 reply
    • 6.1k views
  15. langxang
    Started by langxang,

    Here is a unpacker for PECompact packed dll, but there are some error occur: 1、CreateProcess use command line: loaddll.exe *.dll (just like ollydbg) 2、While CREATE_PROCESS_DEBUG_EVENT,log the DBEvent.u.CreateProcessInfo.hProcess and DBEvent.u.CreateProcessInfo.hThread 3、While LOAD_DLL_DEBUG_EVENT, when load *.dll, SuspendThread DBEvent.u.CreateProcessInfo.hThread, than set breakpoint in OEP,and ResumeThread DBEvent.u.CreateProcessInfo.hThread, while GetThreadContext, Context.regEip always stop in ntdll.KiFastSystemCallRet, can not get dll's regEip: ProcessDll proc LOCAL Buffer [64]:byte LOCAL BP1_data,BP2_data,BP3_data,BP4_data:DWORD LOCAL BP1,BP2,BP3,BP4:DWORD LOCAL hPro…

    • 3 replies
    • 5k views
  16. .::God::.
    Started by .::God::.,

    Can someone give me an example in Delphi/ASM on how to write a loader: That breaks on the first DefWindowProcA, modifies an address and then resumes process. Just some example code will do, thanks.

    • 10 replies
    • 8.6k views
  17. rcemoss
    Started by rcemoss,

    Got a window that has a field for a machine specific license and a field for a key that pops the getwindowtexta in the following code with every keystroke until the field is filled. TIA for any explanation of code. .text:004F0FAD align 10h .text:004F0FB0 push 0FFFFFFFFh .text:004F0FB2 push offset loc_579A18 .text:004F0FB7 mov eax, large fs:0 .text:004F0FBD push eax .text:004F0FBE mov large fs:0, esp .text:004F0FC5 push ecx .text:004F0FC6 push esi .text:004F0FC7 mov esi, ecx .text:004F0FC9 …

    • 6 replies
    • 6.5k views
  18. kittmaster
    Started by kittmaster,

    I'm adding some additional menus in reshack, I have the menu structure I want with the new ,XXXX control IDs. My question is how do connect the XXXX ids to engauge the action item of the menu to a the external launched exe? Like in the menu, I want to launch ImpRec. I now have the menu item, just need to figure out the launch sequence based on the fixed path. I can't find anything in reshack that allows modification of this. I've searched the forum, can't seem to find what I'm trying to do. Thoughts and tools? Chris

    • 24 replies
    • 8.3k views
  19. Tony Scott
    Started by Tony Scott,

    Here is a media player I created in C# with DotNetBar. DotNetBar was used as a cracking target in "Cracking dotnet controls pt.1". I just wanted to show everyone what this little awesome control can do, anywho, the app was created on vista ultimate w/ .net 3.5, but should work on xp, also, of course you will need the dotnet framework to run. WindowsFormsApplication1.rar

    • 0 replies
    • 3.3k views
  20. high6
    Started by high6,

    I was wondering, how does compression/decompression of bits work? anyone have an example of compressing bits in C++. Just a simple one?

    • 2 replies
    • 4k views
  21. glaufan
    Started by glaufan,

    hi all I recently registered here after reading a bit of the forums here for some time and thought I might share a recently created 'subreddit' on reddit.com for asm related links, code or articles http://asm.reddit.com It has a few interesting links, but could do with some more, so I thought maybe some people here have some gems that would be suitable for submitting to reddit? ps. if you haven't used reddit before, people submit links and they are either voted up or down based on peoples opinion of them and you can also comment on submissions

    • 0 replies
    • 3.1k views
  22. The SoX

    Hi to all my question is mentioned in the subject. besides this is there any way to play .gif in the VB 2005

    • 1 reply
    • 3.5k views
  23. Revos
    Started by Revos,

    Hi.. I checked out the forum for any random number code in asm and the only thing I found was too complicate plus it was in MASM. My question is, is there any way I can generate a random number in the range of 1 - 100 or something like that? Thanks for reading ^ ^

    • 8 replies
    • 6.4k views
  24. ahmadmansoor
    Started by ahmadmansoor,

    is there a Good code (function is better ) to know when the exe file executed from text section ...in access or write no problem if it is ASM or C++ Or VB6.0 many thanks

    • 6 replies
    • 4.2k views
    ahmadmansoor
  25. silv3r
    Started by silv3r,

    _http://sean.cruels.net/

    • 0 replies
    • 3.2k views

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.