CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Usopp

Search: Search took 0.03 seconds.

  1. Replies
    16
    Views
    14,167

    Re: Hooking the Https encryption

    I'am not about to decrypt, but to hook the encrypting function, and then let the encrypting function do its job.

    I'am on windows XP, not vista.
  2. Replies
    16
    Views
    14,167

    Re: Hooking the Https encryption

    You should keep your selective and sententious moraling "stuff" to those not so grown up peoples like Chris_F who come into a topic to assault original poster, calling them a thief without any good...
  3. Replies
    16
    Views
    14,167

    Re: Hooking the Https encryption

    Cant see how you can allow yourself to take part in a discussion to call someone a malicious or a robber

    by the way i'am totally sure you dont have any clues about how resolving this issue.
  4. Replies
    16
    Views
    14,167

    Re: Hooking the Https encryption

    I yet explained what i was trying to do twice....

    I need to make an appli which replace a given word by another one.
    I used to hook the send() function and it was working great, but i recently...
  5. Replies
    16
    Views
    14,167

    Re: Hooking the Https encryption

    please
    need help
  6. Replies
    16
    Views
    14,167

    Re: Hooking the Https encryption

    nobody?
  7. Replies
    16
    Views
    14,167

    Re: Hooking the Https encryption

    I'am trying to filter some words.

    i used to hook the send() function from ws2_32.dll but it does not work with a https connexion since data are crypted
  8. Replies
    16
    Views
    14,167

    Hooking the Https encryption

    Hi

    I would like to know what DLL function deals with the Https encryption so i can hook it.

    I used to hook the send() function from ws2_32.dll and filter data, but with and Https connexion data...
  9. Replies
    4
    Views
    880

    Re: geting calling module names

    I'am hooking the sendto function and i would like to log names of every DLL which use it.

    How can i retrieve the names of the DLLs which call to the sendto hooked function ?
  10. Replies
    4
    Views
    880

    geting calling module names

    I have a function in a dll.

    I would like to store the names of the externals dll wich call this function?


    How can i retrieve the names of the DLLs which use my function ?
  11. Replies
    4
    Views
    862

    Re: [socket]selecting the network interface

    i'am running a windows client vpn.
    when this vpn is launched, every program on my computer use the vpn connexion, but i would like my c++ client to not use the vpn conexion even if it is lauchned.
    ...
  12. Replies
    4
    Views
    862

    Re: [socket]selecting the network interface

    Yes, but did not work
  13. Replies
    4
    Views
    862

    [socket]selecting the network interface

    Hello,

    i have an UDP client which sends somes packets to a server.
    i would like my client to send some packets with one my network interface, and others packets with an another network.

    how...
  14. Replies
    11
    Views
    15,499

    Re: non-blocking sleep?

    a timer with a while which test until the timer is reached? this method use a load of cpu

    i would something like the select. is there something like that will work on VC++ ??
  15. Replies
    11
    Views
    15,499

    Re: non-blocking sleep?

    I would like to make a delay function which does not block all the prog and which does not use a lot of ressource.

    i have a prog which send some packet to a server, i hook the the send function...
  16. Replies
    11
    Views
    15,499

    Re: non-blocking sleep?

    I would like to use a non-blocking sleep like a timer which inform me that 30ms are elapsed without using a lot of ressource.
  17. Replies
    11
    Views
    15,499

    Re: non-blocking sleep?

    a sleep() , not a speel
  18. Replies
    11
    Views
    15,499

    non-blocking sleep?

    I'am trying to make a kind of non-blocking speel but it does not work.

    tried a select but seems it works only on linux

    how can ?
Results 1 to 18 of 18





Click Here to Expand Forum to Full Width

Featured