Jump to content
UBot Underground

ddlx

Fellow UBotter
  • Content Count

    25
  • Joined

  • Last visited

Everything posted by ddlx

  1. HI all.. I am always looking for a solution to intégrate one html editor in UI html panel... If someone can do it, i am ok to purchase the job.
  2. hello, My post is not is the good forum (Sould be "support" ) If a moderator is here. That all, best regard
  3. Hi, First, great job with ubot5 I am using it on win7, there is somethink wrong : I cannot reduct the window ?? am i alone ? Best regard Fred
  4. this is an idea... do you know how to do this exactly ?
  5. Hi, </br> <textarea class=\"editme\" variable=\"#my_variable\" fillwith=\"INNERTEXT\" COLS=\"60\" ROWS=\"10\"></textarea> </br> is not working for me.
  6. Hum ok, got the same problem, no solution ? get the tiny is Easy, here is an exemple of code but get the variable.... #my_variable ??? <script type=\"text/javascript\" src=\"http://tinymce.cachefly.net/4.0/tinymce.min.js"></script> <script type=\"text/javascript\"> tinymce.init(\{ selector: \"textarea.editme\" \}); </script> </br> <textarea class=\"editme\" variable=\"#my_variable\" fillwith=\"value\" COLS=\"60\" ROWS=\"10\"></textarea> </br>
  7. Ok it's quite Easy : Exemple of code, the editor is here but the variable not save... <script type=\"text/javascript\" src=\"http://tinymce.cachefly.net/4.0/tinymce.min.js"></script> <script type=\"text/javascript\"> tinymce.init(\{ selector: \"textarea.editme\" \}); </script> </br> <textarea class=\"editme\" /variable=\"#my_variable\" fillwith=\"value\" COLS=\"60\" ROWS=\"10\"></textarea> </br>
  8. Hi; I will try to intégrate tiny mce in an ui html panel. Does anyone did the tric before ? If yes is there any tutorial ?
  9. Hum, ok i see Will try this Thank's for help
  10. Hi all Got a proble with $subtract lists : I have a list A : a b c d e I have a list b : b c d i want a list C = listA - listB a e so i use $subtract lists here is my code : clear list(%listA) clear list(%listB) clear list(%listC) add item to list(%listA, $list from file("{$special folder("Application")}\\listA.txt"), "Delete", "Global") add item to list(%listB, $list from file("{$special folder("Application")}\\listB.txt"), "Delete", "Global") add item to list(%listC, $subtract lists(%listA, %listB), "Delete", "Global") set(#listC, %listC, "Global") Strangely the
  11. Arf lol, this is a partial code to scrape google results. I ll post the complète code when finished my bot
  12. Hum, i was wrong, it's working... ... strange computer ...
  13. Hi, i am back There is somethink wrong in : loop($list total(%result urls)) { add item to list(%final url, $find regular expression($next list item(%result urls), "(?<=href=\").*?(?=\" onmousedown)"), "Delete", "Global") } It does not correctly find the "http... etc"
  14. Cool, i ll try to insert this code in my boot... Will tel you if it work fine.
  15. Hi all I would like to scrappe the google serp urls. This code from 'search result scrapper' (by Kreatus) was working fine. But it not working now (i think google have change his page) if($comparison(#current total, "<", #total results)) { then { if($search page("onmousedown=\"return rwt(this")) { then { add list to list(%result urls, $scrape attribute(<outerhtml=w"<a href=\"*\" class=\"*\" onmousedown=\"return rwt(this*)\">*</a>">, "href"), "Delete", "Global") } else {
  16. Hi all, (Sorry for my english, i am french) Well, I am using the "BotGuru Secured / Protect-IT" solution... since 5 day ago... I ve used essentialy the butGuru Secure to make a license systeme for my Bot and you know what ? It is working !! So i would like to congratulate the Butguru team for this great job and i would like to congratulate for the support, the butguru team help me to configure the soft, the team is very reactive. It good to work like this. I recommend this soft !! Best regard : F.P from France lol
  17. OK, well... i think this is anyway a good starting protection for bot.
  18. Well if the hacker succed in craking htaccess yes, but .htaccess is already a good protection i think.
  19. Hi all, My fisrt contribution, hope you ll like it. This is an astuce to protect your compiled boot with loggin and password, simply by using an "htaccess" protection : HOW TO : 1) Fisrt : make an html page with like this : mypage.html <html> <head> <META NAME="keywords" CONTENT="passwordok"> <title>Hello dolly</title> </head> <body> hello dolly </body> </html> 2) Protect this page with htacess : (Login and password) 3) Then tell the bot to connect to this page using : http://login:pass@my...com/mypage.html
×
×
  • Create New...