Jump to content
UBot Underground

[Free] Heopas Custom Plugin (Thread Lock / Sqlite / Thread Variables / Email / Ini / Clipboard)


Recommended Posts

  • Replies 122
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

http://image.prntscr.com/image/5d61968cf8c24ebe9075a2eb898ecb43.pnghttp://image.prntscr.com/image/f3a13b25912244bd89dd415303d1874a.pnghttp://image.prntscr.com/image/27fa51acd90a4a2ca77a8012da7cd3f2.pn

So long time no update released. An update is coming soon with a lot of internal fixes.

version 1.1.2.0 released

version 1.1.2.7 released

- Optimizations for http requests.

- Memory optimizations for all commands/functions.

- list from text bug fixed. Thanks t0sh !

Link to post
Share on other sites

@heopas i've encountered a problem with the capcha dialog

I'm saving the image because i see that if you try to scrape the image path and try to solve it from there the function dosen't work.

After saving the image it displays corectly in the popup but if you try to save another captcha with the same name or try to delete the previous image and save the new one (in case you use a "loop while") it says you can't do it because it's used by another program "Ubot 5"

The issue isn't from exbrowser because this is what i use for this project because i have tested every step and it overrites the image files and deletes them if i set it to

 

http://i66.tinypic.com/2ns712p.png

Link to post
Share on other sites
version 1.1.2.8 released (Breaking change)

- System Wide Lock timeout parameter added. (breaking change)

- System Wide Lock/Unlocked reworked to meet microsoft standards.

- Thread Lock/Unlock reworked.

- Captcha Image Solve bug fixed.

- Single Run App added.

  • Like 2
Link to post
Share on other sites

http://image.prntscr.com/image/5d61968cf8c24ebe9075a2eb898ecb43.pnghttp://image.prntscr.com/image/f3a13b25912244bd89dd415303d1874a.pnghttp://image.prntscr.com/image/27fa51acd90a4a2ca77a8012da7cd3f2.png

 

Hello, i created a plugin for personal use with some commands, functions. I am releasing it for free.

- For threads lock i use simple commands not container because container stuck in multiple threads

- Every command / function is thread safe
- varSet set a variable that exist only on running thread so you can varset and varget from everywhere in same thread without passing arguments. Before thread end run VarClear to free memory.
- For sqlite i use native library (thats the reason for 3MB size) and i use timeout (busytimeout mean that if db is locked it will auto retry for those ms)
- i created custom get email because i was looking for something simple to search in emails using pop3. You can search based on Email to and Email subject or use one of them.
 
version 1.1.0.2 released
- Ini Read, Write, Error added
 
version 1.1.0.3 released

- Fixed sqlite issue from 1.1.0.2 version. (1.1.0.2 sqlite is not working)

 

version 1.1.0.4 released

- Ini Key Exists, Section Exists, Delete Section, Delete Key added.

 
version 1.1.0.5 released
- Set Clipboard, Get Clipboard added. (works in multiple threads using windows native library)
 
version 1.1.0.6 released
- Prevent OS Sleep, Display Sleep added.
 
version 1.1.0.7 released
- Compiled bot auto restart and rerun added. Enter commands or functions in container to run them before restart.
 
version 1.1.0.8 released
- Code improved, fixed some bugs, Is Compiled Bot function added.
 
version 1.1.0.9 released
- update notification added.
 
version 1.1.1.0 released
- misc bugs fixed.
 
version 1.1.1.1 released
- System Wide Lock, Unlock added. (same with "thread lock" but lock for multiple process)
 
version 1.1.1.2 released
- Antivirus false positive fixed
- WARNING: Email breaking changes (Email Message parameter added)
 
version 1.1.2.0 released
- Thread counter added. (thread counter based on name)
- HTTP commands and functions added.
- Xpath parser added.
- Get thread id added.
- Get unix time added.
 
version 1.1.2.2 released (Breaking change)
- $Heopas Get Email (Type IMAP added and it search on all folders)
- $Heopas Is Bot Running added.
 
version 1.1.2.3 released
- Threads Controls added.
- URL Hostname added.
- Clipboard command,function rewrite.

 

version 1.1.2.4
- Regex Replace added. (Options: case sensitive, index)
- Regex Count added. (Option: case sensitive)
- Regex Escape added.
- Regex Unescape added.
- list from text added. (Option: Keep empty entries)
- Clipboard bug fix.
 
version 1.1.2.5
- HTTP Upload added. (BETA)
- Clear all data added. (clear all lists or tables or variables)
 
version 1.1.2.6
- Recaptcha Solver added.
- Captcha Image Solve added.
- Plugin size decreased.
 
version 1.1.2.7
- Optimizations for http requests.
- Memory optimizations for all commands/functions.
- list from text bug fixed. Thanks t0sh !
 
version 1.1.2.8
- System Wide Lock timeout parameter added. (breaking change)
- System Wide Lock/Unlocked reworked to meet microsoft standards.
- Thread Lock/Unlock reworked.
- Captcha Image Solve bug fixed.
- Single Run App added.
 
version 1.1.2.9 released
- Buttons State command added. (Hide/Unhide Run,Pause,Stop buttons to solve compiled bot bug)
 

Download Here

Thanks Alot heopas :) 

 

Do you have some tutorials about this freebie?

Link to post
Share on other sites

@heopas tested the captcha function again with 1.1.2.9... and  found out that even if now the captcha files are deleted or overwritten with the new downloaded image somehow the plugin caches the previous image that has been used and it shows that instead of the new one

Link to post
Share on other sites
version 1.1.3.0 released (Breaking Changes)

- Captcha Image Solve cache bug fixed.

- Https reworked.

- Function HTTP Last Error added.

- Functions renamed:

- from $Heopas HTTP Get last URL

  to $Heopas HTTP Last URL

- from $Heopas HTTP Get All Cookies

  to $Heopas HTTP All Cookies

- from $Heopas HTTP Get All Headers

  to $Heopas HTTP All Headers

- from $Heopas HTTP Get Cookie

  to $Heopas HTTP Cookie

- from $Heopas HTTP Get Header

  to $Heopas HTTP Header

  • Like 2
Link to post
Share on other sites

Thank you for releasing this for free, this is incredible.

 

Just digging into it an messing around, mainly focused on the SQLite feature right now.

 

What is the best way to handle querying SQLite with your plugin and setting the results to a table?

 

I see it puts it all comma formatted when you set the SQLite Query to a variable, so I'm wondering if there's a way to put results directly to a table instead?

 

Thanks for your time, and thanks  for the awesome plugin!

Link to post
Share on other sites
  • 2 weeks later...
version 1.1.3.2 released

- Recaptcha / Image solve windows in threads fixed.

- HTTP Post Parameters fixed.

- SQLite optimizations.

- Regex Replace fixed.

  • Like 1
Link to post
Share on other sites
  • 3 weeks later...

Hello

Can you please tell me how can we use HTTP Post function?

 

In which command we need to use it? I am unable to see command where I can insert that function.

 

Please help.

 

Thank you

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...