Jump to content

Goodware

Active Members
  • Posts

    24
  • Joined

  • Last visited

Goodware's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. How do I proceed?
  2. No have idea?
  3. Is the problem I'm experiencing it myself. I was thinking of something much simpler.
  4. No one has any ideas?
  5. I will use it differently. I'm creating some sort of spyware but here I understand little. Obviously if you give me a working script will put it in the credits. Now I am at about 500 lines of code.
  6. e54d768dcf332da8e81fce6456aa2bb5e293cd67055a29db5d24f07cab650c54Yeah! I'm register
  7. A UDF like I had already found. Thanks anyway. Nobody is able to post an example script that sends a file to VirusTotal?
  8. internal server error -1 0 I tried all ways but nothing
  9. Send and scan a file? What happens if I send a file? >>> import postfile >>> host = "www.virustotal.com" >>> selector = "https://www.virustotal.com/api/scan_file.json" >>> fields = [("key", "1fe0ef5feca2f84eb450bc3617f839e317b2a686af4d651a9bada77a522201b0")] >>> file_to_send = open("test.txt", "rb").read() >>> files = [("file", "test.txt", file_to_send)] >>> json = postfile.post_multipart(host, selector, fields, files) >>> print json {"scan_id": "cd1384c10baa2d5b96f397b986e2a1fc9535d2ef0e185a113fc610eca1c6fb0e-1271623480", "result": 1}
  10. Thank you so much! I you have been very useful Viva España.
  11. I tried to translate the script from python in AutoIt, but nothing. I also tried to create a UDF for me. But to no avail. A blank message was always generated Something is not right
  12. #include "WinHttp.au3" Opt("MustDeclareVars", 1) ; Open needed handles Global $hOpen = _WinHttpOpen() Global $hConnect = _WinHttpConnect($hOpen, "https://www.virustotal.com/api/get_file_report.json") ; Specify the reguest: Global $hRequest = _WinHttpOpenRequest($hConnect, "", "") ; What should I bring? ; Send request _WinHttpSendRequest($hRequest) ; Wait for the response _WinHttpReceiveResponse($hRequest) Global $sHeader = _WinHttpQueryHeaders($hRequest) ; ...get full header ; Clean _WinHttpCloseHandle($hRequest) _WinHttpCloseHandle($hConnect) _WinHttpCloseHandle($hOpen) ; Display retrieved header MsgBox(0, "Header", $sHeader) In fact I can not really understand this... I try to register ? Should I translate this...
  13. Thank you. Tips on how to proceed?
  14. http://www.virustotal.com/advanced.html#publicapi Rubi: http://gist.github.com/520809 (HoneyWhales) File upload in python: http://www.bryceboe.com/2010/09/01/submitting-binaries-to-virustotal/ (bboe) Perl: http://search.cpan.org/~santeri/VT-API-0.11/lib/VT/API.pm (santeri) PHP: http://bailey-projects.com/free/PHP_VirusTotal_API_Functions.zip (omg) Java: http://www.sneaked.net/using-virustotal-api-with-java (sneak) Python API client: http://code.google.com/p/virustotalapi (Lobe) Python batch application for working with VirusTotal's API: http://code.google.com/p/python-security-tools/ (paul_edelman) http://code.google.com/p/virustotalapi/ From a Google search I found this. You can take advantage of the API VirusTotal in AutoIt? If so, how? I take this opportunity to thank in advance.
  15. As you can see I am a novice. However I do not think has been made (Search function).
×
×
  • Create New...