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. high6

    Sorry don't know the technical term. How do you register a dll to be loaded into every process? (Also how do you get the list of all the dlls loaded into every process?) On a side note, is this documentation on writing a driver still good (it is 4-5 years old)? Is there something I should know/worry about when making a driver?

    • 12 replies
    • 3.8k views
  2. another
    Started by another,

    Hi, How a other window/apps title change? I need delphi7 code. Please help me.

    • 3 replies
    • 3.2k views
  3. Guest LaYmAn
    Started by Guest LaYmAn,

    I found this resource to this handy online Instruction Set reference a little while back and it has come in quite handy for me to reference whilst learning the trade. I thought I'd share with other starters that may need this quick reference to understand whats being done. just click the Letter to the instruction you are after and follow... I hope someone gets a good use from it: http://faydoc.tripod.com/cpu

    • 2 replies
    • 3.8k views
  4. tagor
    Started by tagor,

    Please give me tutorial with make program for Radasm???Please???? And give me source code for Radasm to!!!

    • 17 replies
    • 9.8k views
  5. abhijit mohanta
    Started by abhijit mohanta,

    I have written simple hellpoworld ida plugin using devcpp on windows ida plugin dev kit.I have put the .plw file into plugins path in ida . plugin sdk version 5.2 ida version 5.2 but I dont see the plugin coming in ida edit-->plugins options.I tried to configure plugins.cfg file still no results.I want to know whats wrong.I have even tried to place some readymade plugins in the plugin folder I see some of them orking while others not.Can anyone suggest on this. plugin source code #include <ida.hpp> #include <idp.hpp> #include <loader.hpp> int IDAP_init(void) { } void IDAP_term(void) { return; } void IDAP_run(int arg) { msg("hello world"); return…

    • 0 replies
    • 3.1k views
    abhijit mohanta
  6. steve10120
    Started by steve10120,

    HoundPE.rar

    • 15 replies
    • 6.9k views
  7. bigboss-62
    Started by bigboss-62,

    Hello guys... The wsprintf function is very cool, but it destroy most of registers. The most important in this function is the conversion, and the only needed return value is the size of formatted buffer. I have written the following prototype to include some functions of wsprintf, and the only modified value in return was eax, which contains the size of buffer. Also included is a test program. Currently supports: - %s (string) - %??d (decimal signed, up to 16 chars displayed) - %??X (haxadecimal, up to 16 chars displayed) - %??u (decimal, up to 16 chars displayed). The working method is like the original wsprintf function... Any comments / ideas / tests are welcome... La…

    • 0 replies
    • 4k views
  8. unix
    Started by unix,

    Hi, I want to write a little program, which should only consists out of two or three specific functions as i want then to analyse it with ollydbg and see if i can figure it out, how the asm code actually works. Unfortunately i have some problems, maybe someone can help me. I am using Microsoft Visual C++ 2008 Express Edition as my IDE, but the code seems already a little 'overwhelmed' when i wrote a program which only prints hello world. The basic source looks like this: using namespace std;int _tmain(int argc, _TCHAR* argv[]) { cout << "Hello World\n"; system("pause"); return 0; }When i try to analyse this with ollydbg, i get the following message when opening: …

      • Like
    • 9 replies
    • 17.1k views
  9. urbanyoung
    Started by urbanyoung,

    Hey, I'm trying to dump a dll in memory using c++, the actual dumping is fine but I'm looking for help in fixing he virtual addresses. At the moment I am dumping the virtual addresses but need to change them to the offset (i think that's right). I know I'm not being very clear, so I'll post some code. 01E5102A A1 1444E901 MOV EAX,DWORD PTR DS:[1E94414]Of course because I'm not changing the virtual address code, the dump will crash when run (because it will try to mov 1E94414 into eax, which is an invalid address). I'd really appreciate some help, I looked around the forum but couldn't find anything that helped.

    • 4 replies
    • 4.2k views
  10. 0xFF
    Started by 0xFF,

    Features: Process Information. Module Unloader. Process Watcher. Fixes: No more memory leaks. http://www.speedyshare.com/716737345.html

    • 15 replies
    • 7.2k views
  11. busclock
    Started by busclock,

    I need to modify some source code. I need to get a 2nd string from given string which contains 2 string. The length of 1st string is always changed time to time. For example: NuQW4CSS0Qpa8TnZor in hex: 01 01 01 01 01 01 01 01 1C 01 01 01 01 01 08 4E 75 51 57 34 43 53 53 01 01 01 01 01 08 30 51 70 61 38 54 6E 5Athe 1st string NuQW4CSS (4E 75 51 57 34 43 53 53) it begins with 1 byte in front (08) as the length of the string the 2nd string 0Qpa8TnZ (30 51 70 61 38 54 6E 5A) it also begins with 1 byte in front (08) as the length of the string The problem in the source code i got is, it gets the 2nd string with fixed method, always get it from the 29th byte, which is actually …

    • 1 reply
    • 4.8k views
  12. alaphate
    Started by alaphate,

    I'm using VC6.0 In Debug Output Window, there're lots of "no matching symbolic information found" e.g. How to disable these message without installing debug symbols? Thanks for helping.

    • 0 replies
    • 3.5k views
  13. Bleed
    Started by Bleed,

    Hi, I was just playing around in visual basic 6 and some idea from nowhere came. The idea was to add music to my projects. I was thinking of using chiptunes (xm or mod) but I don't know how. Please do help me if this is possible. Thanks.

    • 6 replies
    • 5.2k views
  14. _ak47_
    Started by _ak47_,

    hello everyone I just make this post beacuase I looK for any cryptersuorce made in VB If anybody have one please shared it for me thanks

    • 2 replies
    • 3.6k views
  15. 0ron
    Started by 0ron,

    Does anyone have source for a C# exe or dll packer?

    • 4 replies
    • 5.2k views
  16. nosconf
    Started by nosconf,

    Is it possible to rip asm code and use it in delphi? Many thanks NoScONf

    • 7 replies
    • 4.2k views
  17. alaphate
    Started by alaphate,

    I found a article about how to change the button text of MessageBox. http://www.codeguru.com/cpp/w-p/win32/mess...icle.php/c10873 Could Any buddy tell me how to draw MessageBox buttons? Such as IDOK button IDCANCEL button I know how to make these buttons to OWNERDRAW buttons in CBTProc hook procedure. i.e. SendMessage(hMB,BM_SETSTYLE,BS_OWNERDRAW,TRUE); However, I don't figure out how to draw these buttons. Thanks for help.

    • 4 replies
    • 3.7k views
  18. mudlord
    Started by mudlord,

    Hello, Here's some stuff I have been mucking around with since WinAHX has a tendency to play some AHX tunes completely wrong. This lib is based on Xeron/IRIS's official code, straight from the official replayer and Winamp plugin sources. CPU usage of the library is very small too (around 0-4% on a E2200 dual core). The lib is public domain and is built with MSVC6. Included is the source code as well as a usage example. hvlplay.zip

    • 13 replies
    • 5.1k views
  19. glaufan
    Started by glaufan,

    Interesting interview http://philosecurity.org/2009/01/12/interv...n-adware-author

    • 1 reply
    • 3.5k views
  20. glaufan
    Started by glaufan,

    hi This post is in literate Haskell which means the entire post can be posted into a .lhs file and compiled by GHC. Haskell is a lazy pure functional programming language named after the logician Haskell Curry. http://en.wikipedia.org/wiki/Haskell_(programming_language) http://haskell.org The following code generates a random cd key for an old game, Battlefield 1942. I derived the keygen method with OllyDBG on a random keygen I found on astalavista. Thanks NaG-Scrim/Fighting For Fun - it had good music ;D but your generated code is weird, either msvc6 is not so smart at optimization or your src code is strange, never mind I still made sense of the larger picture. &gt…

    • 11 replies
    • 7.9k views
  21. 0xFF
    Started by 0xFF,

    a very simple procedure (add to private declaration unless other units need access to it) that'll read and write 1 byte each time using "for" loop to the file size, just look and read comments. This supports a progress bar for user interface ;] procedure TMainForm.Copy_File(Source, Dest: PChar; ProgressBar: TProgressBar); var MyArray: Array Of Byte; //Dynamic Array Of Byte hRead, hWrite: THandle; //Handles returned by CreateFile, usage for Reading file size and writing the new file lpNumberOfBytesWritten: Cardinal; //Store how many bytes have been written lpNumberOfBytesReaded: Cardinal; //Store how many bytes have been readed nFileSize: Integer; //Stores the size of t…

    • 0 replies
    • 3k views
  22. Killboy
    Started by Killboy,

    Hi I'm injecting a Dll into a process, the Dll then creates an empty window (creating a new class + Createwindow). In my main process, I find the window with FindWindow(ClassName, NULL) and send WM_COPYDATA to it with the stuff it needs to handle. The problem is that I need a message loop for my window to receive messages sent to it. If I create the window and start the loop in DllMain (on DLL_PROCESS_ATTACH), I never return, thus I can't check if the Dll injection worked. (I could check if the window existed, but I dont really like that) So I created a thread from DllMain, in which I create the window and loop the messages. This works, but it feels weird. I wanted…

    • 5 replies
    • 6.2k views
  23. atom0s
    Started by atom0s,

    No longer sharing this project on this site.

    • 19 replies
    • 6.3k views
  24. dayed
    Started by dayed,

    //By Dayed #include <ntddk.h> #include <ntifs.h> #include <windef.h> #include <Dayed.h> #include <LDasm.h> #define PS_CLEAR_BITS(Flags, Flag) \ RtlInterlockedClearBitsDiscardReturn (Flags, Flag) #define PS_CROSS_THREAD_FLAGS_TERMINATED 0x00000001UL //================================================================================ ================ BYTE g_HookCode[5] = { 0xe9, 0, 0, 0, 0 }; BYTE g_OrigCode[5] = { 0 }; BYTE jmp_orig_code[7] = { 0xEA, 0, 0, 0, 0, 0x08, 0x00 }; //------------------------------------------------------------ ULONG g_ProcessNameOffset = 0; ULONG g_ThreadFlagsOffset=0; ULONG OldMask; …

    • 3 replies
    • 7.2k views
  25. r00t_H@ck3r
    Started by r00t_H@ck3r,

    Need C# Patch And Keygen Source For Studying Purpose Thanks.

      • Like
    • 9 replies
    • 6.6k 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.