Jump to content
UBot Underground

Bot-Factory

Fellow UBotter
  • Content Count

    3238
  • Joined

  • Last visited

  • Days Won

    164

Everything posted by Bot-Factory

  1. Awesome! Thanks a lot for your help! Dan
  2. I'm currently stuck a little bit. I would like to use a wildcard: if($contains($next list item(%newfiles), "*.dll")) { To get a TRUE if a list item contains text. Similar to *.dll Is there an easy way to do that or do I need a REGEX for that? Thanks in advance for your help Dan
  3. Ubot 5.0.6 is also very slow when you switch between Code View and Node View. Feels likes 10x slower. Sometimes even more. Dan
  4. No, I own the OS Commands Plugin as well. It's great, but the file is: OSCommandsFunctions.dll And it doesn't has the folder commands I'm looking for. Dan
  5. Hello. I'm looking for a plugin called "FileFolderCommands.dll" Does someone know which plugin that is? I checked both of the free folder plugins, but they don't come with that file? Thanks in advance for your help Dan
  6. Edward_2, on 21 Jan 2014 - 09:13 AM, said: Just check out the plugin section, all you need is there. I downloaded all the free Folder plugins. But none of them brings a: FileFolderCommands.dll I have: advance.file.dll File Management.dll Would be really great if you could take a look where FileFolderCommands.dll is coming from? Maybe that was part of another plugin package? Thanks in advance for your help Dan
  7. Hello. Can this plugin: 1. Compress existing PDF? 2. Add text / watermark to an existing PDF? Like adding a name to every single page? But in a way that it's not a comment or something that can easily be removed with Adobe acrobat? Dan
  8. Payment sent (2LH651025P7830901) Are you german(Daniel Pfeffer)? Cheers Dan
  9. That looks like a different plugin. The one from Aymen is "File Management.dll"? Or is there another one? Dan
  10. Hmm.. What command would do that from Aymen's plugin? I can't see anything, that would return all folders within a folder? Dan
  11. Ok, I found a way with the Advanced Shell plugin: set(#foldersxxx, $plugin function("Advanced Shell.dll", "$shell batch hidden", "dir \"{$special folder("Application")}\\*.\" /b /s"), "Global") http://ubotdev.com/free-plugin-advanced-shell
  12. Hello. Is there a way to query folders? Similar to getting filenames with "$get files" "$get files" which would include files from all subfolders would be even better... Dan
  13. Hello Aymen, quick question regarding the Zip plugin. So far I love it. I only have a small problem. When I unzip a file that contains folders, there is now way within Ubot studio to figure out the folder names. Would be great if there would be an option to extract everything into a single folder. Ignoring all folders within the Zip file. An option to overwrite duplicates. Or automatically add something like (1) (2) and so on if files are duplicated. A filter option for the untip command would be great as well. Like unzip *.dll from x.zip Thanks for considering this. Dan
  14. Hello. Is there a way to automatically set the filename with the "http file download" function? Because sometimes I have a download link which doesn't contain a filename. So I can't use things like {$plugin function("File Management.dll", "$file name", #nextdownload)} It looks like the "http file dwonload" function always needs a filename. Would be great if I only could specify a folder, and the plugin would use the name of the received file automatically. Thanks Dan
  15. Hello. I have two list with file paths and file names. Example: d:\files\info.exec:\test\hallo.exe The first list is my source list. And I want to identify if items from my second list are included in list1. Here is my current code: set list position(%file1, 0) set list position(%file2, 0) loop($list total(%file1)) { set list position(%file2, 0) loop($list total(%file2)) { set(#xxxx, $find regular expression($next list item(%file2), "(?<=\\\\)[a-zA-Z\\s]+\\.exe"), "Global") if($comparison($find regular expression($next list item(%file1), "(?<=\\\\)[a-zA-Z\\
  16. Maybe something like this: <html><body> <?php $info = $_POST['info']; echo "Info ". $info . " " $file = 'test.txt'; $current = file_get_contents($file); $current .= $info; file_put_contents($file, $current); ?> </body></html>
  17. Thanks for that info. That part of the PHP script is already working. Creating a local file and saving data to it works fine on my webserver. The part where I struggle is receiving the information which will be sent via http post to my PHP script. Security is also a concern here, because this is running via the internet. And I want to avoid that someone who figures out the url and PHP script name can just flood it. So I need some form of protection as well.
  18. Hello. I'm looking for an easy way to use HTTP Post to send an information to a webserver / PHP script. The script should take the info it get's from HTTP post and save it to a file on the webserver. So this is mainly a question about how this could be done on the webserver side rather than about the HTTP post plugin itself. But maybe someone has done something similar already? And has an example PHP script which could do stuff like that? If someone has an idea or an example how this could be done? Thanks in advance for your help Dan
  19. Would be great if you could add FileVersion to -$file info Thanks for considering this. Dan
  20. If there would be a way for certificate pinning, you could detect that and stop the bot. With a regular .NET application that's relatively easy to do. Dropbox for example is using such a technique. So if you start Fiddler to analyze the dropbox communication, you can't because the app can detect that the destination website is not using the correct SSL certificate. Dan
  21. An additional information. Maybe useful: the best you can do is to exempt that application’s traffic from decryption by setting the x-no-decrypt Session flag on the CONNECT tunnel. This flag will prevent Fiddler from decrypting the traffic in the tunnel and it will flow through Fiddler uninterrupted.
  22. Hello. I'm looking for a way to prevent a man in the middle attack. My bot is communicating with some HTTPS websites. And sometimes I have to integrate login details into the bot. The bot itself is encrypted and secured with a 3rd Party protection mechanism. But I'm not able to validate the SSL communication from my bots to the https websites. So if someone is using a software like Fiddler (http://fiddler2.com/) he could install a special "man in the middle" certificate which is fully trusted on his computer. And the software will intercept the communication from the bot
  23. Awesome! That new version fixes my problem with Ubot5. Thanks again for your fast reply and help! Dan
×
×
  • Create New...