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. mudlord
    Started by mudlord,

    Hi, I am just asking how to read text that is multilined, in a text box, into a formatted memory buffer. This is needed because the required function that needs the text, expects it to be formatted. And so, the app fails because the text is not formatted properly (with newlines etc). The language the project is written in is C++, with zero MFC or .NET. Any assistance at all would be appreciated. EDIT: Worked it out. For some odd reason, the edit control's contents (which are on tabs) are not read...

    • 0 replies
    • 2.9k views
  2. DavidOliveira
    Started by DavidOliveira,

    i wanna make a link in my application go to a site anyone can helpe like to do

    • 1 reply
    • 3.2k views
  3. mudlord
    Started by mudlord,

    *plz kill this people.*

    • 6 replies
    • 5.1k views
  4. steve10120
    Started by steve10120,

    Hi, I've got another problem. I'm trying to read the read and parse data in the resource section, after reading some articles I've got a pretty good idea about what needs to be done. But, I'm stuck on one little thing, which none of the articles seem to cover. The problem is with the IMAGE_RESOURCE_DIRECTORY_ENTRY values, the Name value seems correct(checked with Index refs), but the OffsetToData value is wrong, or at least the value in the field is way way above even the filesize. Is there something I need to do to the OffsetToData to get the right offset of the IMAGE_RESOURCE_DATA_ENTRY? var dwOffset: DWORD; bFile: TByteArray; IDH: TImageDosHeader; INH: TImageN…

    • 0 replies
    • 3.3k views
  5. DavidOliveira
    Started by DavidOliveira,

    hey people,i want to get data from edit and show to the user,

    • 2 replies
    • 4.9k views
  6. DavidOliveira
    Started by DavidOliveira,

    i wanna generate random numbers with no repeats, i have this code #include <cstdlib> #include <iostream> using namespace std; int main() { int randomNumber; for(int i = 0; i < 15 ; i++) //print random #s 15 times {randomNumber = (rand() % 25) + 1; cout << randomNumber << endl;getchar( ); } return 0; } but it generate the same sequence 17-18-10-1-20-25-4-9-13-15-6-21-7-3-12 everytime how can i fix it

    • 7 replies
    • 4.4k views
  7. Busted
    Started by Busted,

    Hey all, I am searching for an unpacker source code coded in assembly , the reason for this is I want to start coding unpackers you know teach myself. I havn't found any tutorials on coding unpacker's if you happen to come across any let me know , anyways... your help is appreciated! Tipidy

    • 18 replies
    • 35.2k views
    born2download
  8. tagor
    Started by tagor,

    Sorry my english is bad. How to input music in Borland Delhpi 7??? Please Tell Me???

    • 8 replies
    • 4.8k views
  9. Mr. X
    Started by Mr. X,

    i am just learnign asm and just trying to code a simple exe which on opening first open a site like www.tuts4you.com Then the main program executes. I know about coding a message box and little bit more but open site on opening site is little interesting one so i want that if anyone know how to do that coding or any source related to that please share with us

    • 6 replies
    • 4.8k views
  10. high6
    Started by high6,

    Anyone have an example of hooking a kernel32 api with a driver? Also can more than one driver hook an api at a time? Side question: Can you call a drivers functions directly? Or do you have to do the Read/Write file stream?

    • 5 replies
    • 4k views
  11. nickpalingcool
    Started by nickpalingcool,

    Dear all friends in tuts4you, rite now i'm try to build a simulation local server for my favourite online game so i can play it in my computer without internet connection (in additional to practice the game n because verry expensive internet connection in my country).. i try to build it in visual basic 6 because limited knowledge off programming language that i have. at first, i've captured all packets sent n recieved using WPE. the problem is, i send the packet i recieved in wpe with winsock, the server respond the connection but the game not responding the connection. some off my codes are: Private Sub Winsock1_ConnectionRequest(ByVal requestID As Long) Winsock1.Close …

    • 3 replies
    • 3.8k views
    nickpalingcool
  12. steve10120
    Started by steve10120,

    Hi. I've got a problem. I'm creating a fake signer, thats adding a new section to the PE, adds the sig, and a push/retn to go back to the OEP. Now, my problem is an odd one, while I've been building it I've been calling the function(s) via Form.Create event, and all is working perfectly, but now everything is ready I started to make the GUI and call via button click events, this is when I started running into problems. Just doesn't make sense to me, if it works via Form.Create should work anywhere else, no? This is the add section function I'm using, I ported it from a VB version, I forget who that was by. Please excuse the mess I've changed all the read/write to copymem …

    • 9 replies
    • 5.4k views
  13. alaphate
    Started by alaphate,

    Recently, I downloaded a free video to flv software. It will check for update every time it starts up, and there's no option to disable it visiting its website. For example, some freeware will download ads from its website. Without internet connection, it will work fine. The problem is how to disable it from visiting internet without using internet firewall. I tried using winHex to replace its domain to ip address 0.0.0.0, but the application might encrypt its domain. Windows hosts file may solve this problem, but it will not the best solution for sharing clean software to others. I will appreciate your good suggestions. Thank you in advance. I coded a demo program. See P…

    • 8 replies
    • 4.1k views
  14. SunBeam
    Started by SunBeam,

    Hello, guys and gals. I have a question involving patching system DLLs to allow hooking or loading of user's modules inside an app. For instance, I picked msvcrt.dll from system32 for this task. Loading up the DLL in Olly shows this: So, let's say I want to write some code inside the DLL, then place a JMP or PUSH+RET at DLL's EP to redirect it to first execute my code, then restore code at EP, after which I'll resume execution to the DLL. All easy and done, I pick some empty space from .data section, as below: So, EP: 77C1F2A1 CAVE: 77C5D300 It would work pretty well, except, if I copy DLL to Desktop and open it in Olly, I get this: Under these circumstances …

    • 24 replies
    • 8.4k views
  15. serhat
    Started by serhat,

    Hallo I'm coding with RadASM Program. Not so good . I have now a Problem with RC-file... If I create a dialog Normally the RC-file content should be such!! 100 DIALOGEX 6, 6, 207, 96 STYLE DS_CENTER | WS_MINIMIZEBOX | WS_VISIBLE | WS_CAPTION | WS_SYSMENU FONT 8, "MS Reference Sans Serif" BEGIN CONTROL "IDC_BTN", 101, BUTTON, BS_OWNERDRAW | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 125,24,62,15 CONTROL "OK", 102, BUTTON, BS_OWNERDRAW | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 125,41,62,15 CONTROL "Cancel", 103, BUTTON, BS_OWNERDRAW | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 125,59,62,15 CONTROL "IDC_GRP", 104, BUTTON, BS_GROUPBOX | WS_CHILD | WS_VISIBLE, 117,12,78,69 ENDBut R…

    • 1 reply
    • 3.3k views
  16. Majii Guy
    Started by Majii Guy,

    Enjoy, everybody! http://www.sendspace.com/file/wnbgdq Use it as you want, credits or not; it's not terribly messy, some parts were a bit inflexible (e.g.: The GetFunction function should accept one or two more parameters for the hostname and request to be sent, etc). Otherwise, I think it works fairly well.

    • 0 replies
    • 3.6k views
  17. metr0
    Started by metr0,

    Hey, Porting this post to the public area. Anyway, here it goes: I've been writing a small ruby extension which provides to functions in a class, to log some text to Olly's log window and to put a MessageBox on the screen; nothing complex. I then embedded a ruby interpreter into an Olly plugin, hoping to be able to call the extension function from my script. But calling the script using the embedded ruby interpreter causes either an exception or simply doesn't work (with ruby_exec doing nothing). If anyone has been working with an embedded ruby interpreter before: suggestions are welcome. Regards, metr0

    • 3 replies
    • 3.7k views
  18. alaphate
    Started by alaphate,

    Why not mov eax, 0 ? Any advantages using xor eax, eax ? Is it faster?

      • Like
    • 15 replies
    • 15.8k views
  19. alaphate
    Started by alaphate,

    Just like C function MyProc() { char szTemp[] = "Hello World!" } In MASM: MyProc PROC local szTemp:byte MyProc ENDP The problem is how to transfer "Hello World!" to szTemp, WITHOUT defining global variable in .DATA segment. I figured out one way, but it will not be the best way. MyProc PROC local szTemp[128]:byte mov al, 48h ;ASCII of 'H' mov szTemp, al mov al,65h ;ASCII of 'e' mov szTemp+1, al ;etc... MyProc ENDP Could any buddy suggest me better solutions? Thanks in advance.

    • 11 replies
    • 25k views
  20. zerith
    Started by zerith,

    Hello, i would like to add some bytes to an existing program, so i can execute them later in the reversed program. how would i do such a thing? would i have to mess with the file system? the root directory? or can i just modify the size of the file with a tool like OLLYDBG? thanks in advance.

    • 4 replies
    • 3.7k views
  21. high6
    Started by high6,

    I want to stream raw audio through the microphone input. How do you do something like that? Is it possible without creating a custom driver? This library looks like it could do it. http://www.ambiera.com/irrklang/

    • 1 reply
    • 3.2k views
  22. r00t_H@ck3r
    Started by r00t_H@ck3r,

    Example Please Thanks.

    • 1 reply
    • 6.3k views
  23. r00t_H@ck3r
    Started by r00t_H@ck3r,

    kernel32.GetSystemTimeAsFileTime how do I hook this api and return to the date I want ?

    • 5 replies
    • 5.2k views
  24. alien_fx_fiend
    Started by alien_fx_fiend,

    Does anyone know where I can find tutorials and ebooks on programming in Hex and or Binary.I tried talkbinary.com but that wasn't much of help,this is my latest effort in conducting research into more advanced insight into computing.

    • 2 replies
    • 3.2k views
  25. ghandi
    Started by ghandi,

    Hi all, I've tried unsuccessfully on several occasions to compile C code to a static library so i can use it with MASM, but every time i try, i add the lib file to a project (created just for testing) and try to compile and i get the following error message: error LNK2001: unresolved external symbol _Function1@16I've used extern "C" to prevent the names being decorated, but this doesnt seem to make any difference to the error, as it is identical regardless of the name being decorated or not. I've tried using stdcall, no joy. Does anybody know what needs to be done to succeed with this? Also, i've succeeded in making a static library from a VC++ dll with Dll2Lib (an altern…

    • 3 replies
    • 5.4k 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.