Thanks a lot for the information, i will check it.
Ram Shmider
Posts
-
license viruses database for antivirus module in security tool. -
license viruses database for antivirus module in security tool.Thanks for the reply and the information.
-
license viruses database for antivirus module in security tool.First of all, thanks for the reply. I will have a team that investigate new threats over time. But i need a list like that for old virus, that probably exist here and there.... Thanks, Ram.
-
license viruses database for antivirus module in security tool.Hi All, I am developing an antivirus scanner module for new security tool, in C++ for the windows operation system. I have a need for database/list of viruses information so my tool be able to detect them. Does any one know where i can buy/download a list like that with license to use in my tool. I hope this is the right forum.... Thanks a lot, Ram.
-
[SOLVED] I need to copy (CTRL+C) a web page... C++ [modified]Thanks for the replay.
-
[SOLVED] I need to copy (CTRL+C) a web page... C++ [modified]Thanks a lot for the help, it realy helps... by using SendInput i was able to solved it. This is a the part code i use...(C++) INPUT input; input.type = INPUT_KEYBOARD; // ctrl down input.ki.wVk = VK_LCONTROL; input.ki.dwFlags = 0; SendInput(1, &input, sizeof(INPUT)); Sleep(50); // C down input.ki.wVk = 'C'; SendInput(1, &input, sizeof(INPUT)); Sleep(50); // C up input.ki.dwFlags = KEYEVENTF_KEYUP; SendInput(1, &input, sizeof(INPUT)); Sleep(50); // Ctrl up input.ki.wVk = VK_LCONTROL; SendInput(1, &input, sizeof(INPUT)); Sleep(50); To simulate the CTRL+A just update this part to 'A' // A down input.ki.wVk = 'A'; SendInput(1, &input, sizeof(INPUT)); Sleep(50); Again, Thanks a lot for the help. Ram.
-
[SOLVED] I need to copy (CTRL+C) a web page... C++ [modified]Hi All, I am tring to write an application that open a web page and Copy its data to the clipboard. I know i can use function to httpRead the page into a buffer, but in this case i have all the html's tags and i do not need them, if i use copy (CTRL+C) i am able to only get the text. I thought to open an IE process with the url as parameter and then use the SendMessage API with the process handle and the CTRL+A as the message and then CTRL+C as the message (hopefully it will generate a Select All and Copy). If this works would it be able to work when the user is logout (no visible UI). Love to hear your thought about it, i am working with C++ or C# on windows. Thanks a lot for your time, Ram.
modified on Wednesday, April 20, 2011 2:11 AM
-
Proxy Type - by codeHi All, I am tring to figure out is it possible to get the proxy type using C/C++ code. Lets say i have an IP and Port of a proxy server. I use it in my code and now my code works using a proxy, so my IP needs to be hide to the world... I can do some, easy, test to see if the proxy is working or not. But the thing i realy want to know is what is the proxy type, SOCKS4/5, anonymous/ High anonymous/ Elite one... and so on. Do you know if there is a way to get this information, re by header info, special value etc. Thanks a lot for your help, Ram.
-
C++ proxy programming question.Hi Peter, I will give it (SOCKS) a look.... Thanks for the reply. Ram.
-
C++ proxy programming question.Hi, I have a question in windows base development, I am using VS C++ is it possible to create a packet cannon that use multiple proxy servers to send the packet. In multi i mean that the packet go from one proxy to another one and so on till the target location. I can use one proxy server for each package that i send, but is it possible to use more then one for the same package? Example scenario: command: packet_canon.exe -p plist.txt -h 3 -t [site name]/example_script.php sending package to '[site name]/example_script.php'... packet go into proxy server USA... From there to Proxy server in UK... From there to Proxy server in Japan... From there to the target site... the -p - is for a proxy list file the -h - is for how many proxy to pass the -t - is the target location (php script). Thanks a lot for any help and your time, Ram.