Martin Velez
Martin Velez
I am not sure I understand your question. This is a program that transforms binary x86 code. Given a program, it transforms it into an equivalent program that uses different...
I believe that I understand your question now. The obfuscation engine does change the functionality. See "Usage Example 1" in the README. > In this example, we use w32evol.exe to...
This is still working as of today. ``` #!/usr/bin/env ruby require 'bing-search' BingSearch.web_only = true BingSearch.account_key = '123456789' results = BingSearch.web('Martin Velez') ```
@vishne0 You can do a basic web search with the following code: ```ruby # Make a call to the Bing Web Search Api v5 # Documentation: https://dev.cognitive.microsoft.com/docs/services/56b43eeccf5ff8098cef3807/operations/56b4447dcf5ff8098cef380d # # params:...