Skip 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. bigboss-62
    Started by bigboss-62,

    Hello guys... Here is my working BJFnt 1.3 decrypter... Ok, you can say that ap0x still have released a BJFnt decryptor, but their one is not *fully* working and is still buggy. To check it, just try their decrypter with original BJFnt 1.3 crypter (multiple time crypted) and you will see that it crashes... My decrypter is working with BJFnt 1.3, and i include support for BJFnt 1.2rc (tested on original crypter)... I have also included source code in masm for those who are interested... PS: I'm looking for BJFnt v1.0a and v1.1bd to include it in my decrypter. If you have it, can you send me a link for it or send me it... Laurent aka BIGBOSS from COPs Attachment updated due…

    • 1 reply
    • 5k views
  2. high6
    Started by high6,

    I need to dump a processes structure and its references. An example is I have an array like struct SomeStruct { char * PtrToSomething; int a_num; }; now luckily it is very simple and they are all aligned in 1 block but sadly the PtrToSomething is a pointer to a completely different location in memory. I was wondering how I should handling dumping the structure (Using ReadProcessMemory). because there are 1000-10000 of these sometimes. I was thinking of reading all the structures and then pairing the ptrs together and reading blocks that way I read more than 1 PtrToSomething at a time. Then read the bytes from the blocks etc etc. Thoughts?

    • 7 replies
    • 6.1k views
  3. Kruse
    Started by Kruse,

    Hey everyone, I'm writing an FTP script in PHP and I know the upload is working (tested it with out the HTML form), but as soon as I put a form in it to post some data to another page, it no longer works. the data i'm trying to post are in hidden fields in an html form: <input type="hidden" name="action2" value="up"> <input type="hidden" name="hostname" value=<?php $hostname ?>> <input type="hidden" name="user" value=<?php $user ?>> <input type="hidden" name="password" value=<?php $password ?>>where all the values were posted from another page and put into these vars (except for action2, which is also the only one which is read p…

    • 7 replies
    • 5.3k views
  4. nilsen
    Started by nilsen,

    Hello i wonder what's missing this code,Why it's doesn't play sound on click for DirBrowse button? How to get this work? function DirBrowseButtonClick(CurPageID: Integer): Boolean; begin

    • 0 replies
    • 4.2k views
  5. Teddy Rogers
    Started by Teddy Rogers,

    For those interested in the source code of executable crypters should find this one interesting... src104.zip Ted.

    • 0 replies
    • 4.2k views
  6. alaphate

    I found a tutorial from codeproject: http://www.codeproject.com/KB/COM/cwebpage...uick&fr=226 The problem I encountered is solved. The key is vtable in COM object. C++ doesn't need vtable.

    • 0 replies
    • 3.1k views
  7. IMPosTOR
    Started by IMPosTOR,

    hear is 1 keygen source code . Author : IMPosTOR \ Under SEH Team Feedback: impostor_76171@yahoo.comPage : www.webkade.ir Homepage: www.impostor.blogfa.com KeYGeN_Src_by_IMPosTOR.zip

    • 0 replies
    • 4.4k views
  8. jackyyll
    Started by jackyyll,

    What editor do most people use to edit asm source code (more specifically, masm)? Looking for a good one to use to get started with masm.

    • 5 replies
    • 5.6k views
  9. ragdog
    Started by ragdog,

    hi I search an example for change entry point in masm32 can your help me please? greets, ragdog

      • Like
    • 14 replies
    • 6.3k views
  10. diablo2oo2
    Started by diablo2oo2,

    This is just a little example how to make colored dialogs... dialog.color.example.rar

    • 14 replies
    • 5.8k views
  11. ragdog
    Started by ragdog,

    hi all i search a masm32 source for code injection to a running process. i found only this code this crash my target no plan why ? can you help me or have your a good example? .386 .model flat, stdcall option casemap:none include \masm32\include\windows.inc include \masm32\include\kernel32.inc include \masm32\include\user32.inc includelib \masm32\lib\kernel32.lib includelib \masm32\lib\user32.lib.data szTarget byte 'Notepad', 0 szUser32 byte 'USER32.DLL', 0 szSharedData byte 261 dup (0).data? hModule dword ? hNewModule dword ? hProcess dword ? dwSize dword ? dwPid dword ? dwBytesWritten dword ? dwTid dword ? .codeHijackedThread proc invoke MessageBox, 0, addr szTarget, ad…

    • 4 replies
    • 6.1k views
  12. high6
    Started by high6,

    So I want to inject a call into a remote process that I can call with CreateRemoteThread. Problem is that if a few of the api calls aren't to the same place in memory with the target and the compiled stub then it wont work. Whats an easy way to compile a C++ stub and fix its api calls? I rather not make a 2d array of where the call is in the stub and what api it is, to fix it. All I can think of is have an array that is pointers to the apis instead and have my stub call those. Then when I inject it I fix the pointers. If thats what I should do can someone give an example?

    • 9 replies
    • 6.5k views
    GamingMasteR
  13. 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
    • 8.2k views
  14. 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
    • 6.4k views
  15. 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
    • 10.3k views
  16. 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.4k views
    Shub-Nigurrath
  17. 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.8k views
  18. 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
    • 4k views
  19. 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
    • 6.3k views
  20. 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
    • 5.1k views
  21. afre_N
    Started by afre_N,

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

    • 4 replies
    • 4.1k views
  22. langxang
    Started by langxang,

    MASM source of MiniDBG debugger.rar

    • 0 replies
    • 3.5k views
  23. 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.7k views
  24. 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
    • 5.2k views
  25. 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.3k views

Account

Navigation

Search

Search

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.