Jump to content
UBot Underground

Leaderboard

Popular Content

Showing content with the highest reputation on 12/03/18 in all areas

  1. Nifty nugget for noobs... Well done Sanjeev!
    1 point
  2. In this case you could just do this: set(#firstReviewer,$scrape attribute($element offset(<class="shop2-review-attribution">,0),"innertext"),"Global") add list to list(%reviewerSplit,$list from text(#firstReviewer," on "),"Delete","Global") But if you grab the whole thing and want the date you could also use this regex: set(#date,$find regular expression(#firstReviewer,"[A-Z][a-z]+\\s\\d+,\\s20[0-9]+"),"Global")
    1 point
  3. also supported formats zip: ZIP file (if the zlib module or external zip executable is available).tar: uncompressed tar file.gztar: gzip’ed tar-file (if the zlib module is available).bztar: bzip2’ed tar-file (if the bz2 module is available).
    1 point
  4. *****Zip***** run python("import shutil import os os.chdir(\'D:/\') shutil.make_archive(\'test\', \'zip\', \'folder-or-file-you-want-to-zip\')") *****UNZIP***** run python("import zipfile with zipfile.ZipFile(\"D:/test.zip\",\"r\") as zip_ref: zip_ref.extractall(\"D:/test\")")
    1 point
  5. Hello Kill3rbko, To run any exe with admin rights you have to create .bat file with the below code and then you can simply use shell batch hidden command to trigger your bat file with the code:cd C:\your path to bat file (Your bat File Must Be In C Directory) start yourbat.bat create bat file with below code:@echo offif not "%1"=="am_admin" (powershell start -verb runas '%0' am_admin & exit /b)cd C:\your path to file (Your File Must Be In C Directory)start yourfile.exe NOTE: IT WILL GOING TO PROMPT USER TO RUN AS ADMIN
    1 point
×
×
  • Create New...