Najeebsk

CMD-ALIASES-PRO.txt

Apr 22nd, 2026 (edited)
73
0
Never
4
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.89 KB | None | 0 0
  1. {
  2. "List": {
  3. "dir": "dir /b",
  4. "dira": "dir /a",
  5. "dirsb": "dir /s /b",
  6. "doskey": "DOSKEY /history",
  7. "tree": "tree /f /a",
  8. "psls": "Get-ChildItem",
  9. "pslsr": "Get-ChildItem -Recurse -Force",
  10. "program": "DIR /s /w /p \"C:\\Program Files\"",
  11. "dir_hidden_windows": "DIR /s /q /a:sh /p C:\\Windows",
  12. "dir_csv_export": "DIR C:\\*.csv /s /b > C:\\Users\\tim\\Desktop\\csvfiles.txt",
  13. "dir_append_list": "DIR /W /B >> LIST.EXT",
  14. "dir_program_files_log": "DIR C:\\\"Program Files\" >> %COMPUTERNAME%-IS.txt",
  15. "list_c_drive": "DIR /S /B /A C:\\ >> %COMPUTERNAME%-LISTC.txt",
  16. "list_d_drive": "DIR /S /B /A D:\\ >> %COMPUTERNAME%-LISTD.txt",
  17. "list_e_drive": "DIR /S /B /A E:\\ >> %COMPUTERNAME%-LISTE.txt",
  18. "list_f_drive": "DIR /S /B /A F:\\ >> %COMPUTERNAME%-LISTF.txt",
  19. "list_g_drive": "DIR /S /B /A G:\\ >> %COMPUTERNAME%-LISTG.txt",
  20. "list_h_drive": "DIR /S /B /A H:\\ >> %COMPUTERNAME%-LISTH.txt",
  21. "list_i_drive": "DIR /S /B /A I:\\ >> %COMPUTERNAME%-LISTI.txt",
  22. "list_j_drive": "DIR /S /B /A J:\\ >> %COMPUTERNAME%-LISTJ.txt",
  23. "list_k_drive": "DIR /S /B /A K:\\ >> %COMPUTERNAME%-LISTK.txt",
  24. "list_hidden_files": "DIR /A:H /S /B >> LIST.txt"
  25. },
  26. "System_Info": {
  27. "sysinfo_basic": "systeminfo",
  28. "sysinfo_csv": "systeminfo /fo csv",
  29. "sysinfo_list": "systeminfo /fo list",
  30. "sysinfo_table": "systeminfo /fo table",
  31. "sysinfo_noheader": "systeminfo /nh",
  32. "sysinfo_remote": "systeminfo /s computername",
  33. "sysinfo_auth": "systeminfo /u domain\\user /p password",
  34. "boot_time": "systeminfo | find \"Boot Time\"",
  35. "memory_info": "systeminfo | find \"Memory\"",
  36. "os_name": "systeminfo | find \"OS Name\"",
  37. "os_version": "systeminfo | find \"OS Version\"",
  38. "system_type": "systeminfo | find \"System Type\"",
  39. "os_full": "systeminfo | findstr /C:\"OS Name\" /C:\"OS Version\"",
  40. "uptime": "systeminfo | findstr /i \"uptime\"",
  41. "ip_all": "ipconfig /all",
  42. "ip_ipv4": "ipconfig | find \"IPv4\"",
  43. "net_listen": "netstat -ano | find \"LISTEN\"",
  44. "sleep_states": "powercfg /availablesleepstates",
  45. "sessions": "query session",
  46. "chrome_tasks": "tasklist | find \"chrome\"",
  47. "windows_version": "ver",
  48. "volume_info": "vol",
  49. "whoami_basic": "whoami",
  50. "whoami_help": "whoami /?",
  51. "whoami_all": "whoami /all",
  52. "whoami_fqdn": "whoami /fqdn",
  53. "whoami_groups": "whoami /groups",
  54. "whoami_logonid": "whoami /logonid",
  55. "whoami_priv": "whoami /priv",
  56. "whoami_upn": "whoami /upn",
  57. "whoami_user": "whoami /user",
  58. "cpu_detail": "wmic cpu get name,maxclockspeed /format:list",
  59. "disk_detail": "wmic diskdrive get model,size /format:list",
  60. "os_detail": "wmic os get caption,version /format:list",
  61. "startup_basic": "wmic startup get caption,command",
  62. "startup_export": "wmic startup list full >> %COMPUTERNAME%-IS.txt",
  63. "os": "wmic os get Caption,Version,OSArchitecture",
  64. "cpu": "wmic cpu get Name,NumberOfCores,NumberOfLogicalProcessors",
  65. "mem": "wmic os get FreePhysicalMemory,TotalVisibleMemorySize",
  66. "pssys": "Get-ComputerInfo | Select-Object WindowsProductName,OsTotalVisibleMemorySize,CsProcessors",
  67. "pshw": "Get-CimInstance Win32_ComputerSystem | Select-Object Name,Manufacturer,Model,TotalPhysicalMemory"
  68. },
  69. "Version": {
  70. "ver": "ver",
  71. "psver": "$PSVersionTable.PSVersion.ToString()",
  72. "ffmpegver": "ffmpeg -version",
  73. "imgever": "magick -version",
  74. "wgetver": "wget --version",
  75. "ytdlver": "youtube-dl --version"
  76. },
  77. "Help": {
  78. "hlp": "help",
  79. "hlpcmd": "command /?",
  80. "hlpATTRIB": "ATTRIB /?",
  81. "hlpsysteminfo": "systeminfo /?",
  82. "hlparp": "help arp",
  83. "hlpdir": "help dir",
  84. "hlpwhere": "where /?",
  85. "hlpwmic": "wmic /?",
  86. "hlpps": "Get-Help <command> -Full",
  87. "hlpffmpeg": "ffmpeg -h full",
  88. "hlpimge": "magick --help",
  89. "hlpwget": "wget --help",
  90. "ytdlhlp": "youtube-dl --help"
  91. },
  92. "Shortcuts": {
  93. "cdup": "cd ..",
  94. "allusersprofile": "%allusersprofile%",
  95. "appdata": "%appdata%",
  96. "homedrive": "%homedrive%",
  97. "homepath": "%homepath%",
  98. "programdata": "%programdata%",
  99. "programfiles": "%programfiles%",
  100. "programfiles_x86": "%programfiles(x86)%",
  101. "public": "%public%",
  102. "systemdrive": "%systemdrive%",
  103. "temp": "%temp%",
  104. "userprofile": "%userprofile%",
  105. "windir": "%windir%",
  106. "add_remove_programs": "appwiz.cpl",
  107. "calculator": "calc",
  108. "cert_manager": "certmgr.msc",
  109. "character_map": "charmap",
  110. "command_prompt": "cmd",
  111. "computer_management": "compmgmt.msc",
  112. "control_panel": "control",
  113. "display_settings": "desk.cpl",
  114. "device_manager": "devmgmt.msc",
  115. "defrag": "dfrg.msc",
  116. "disk_management": "diskmgmt.msc",
  117. "directx_diag": "dxdiag",
  118. "event_viewer": "eventvwr.msc",
  119. "explorer": "explorer",
  120. "firewall": "firewall.cpl",
  121. "shared_folders": "fsmgmt.msc",
  122. "group_policy": "gpedit.msc",
  123. "internet_options": "inetcpl.cpl",
  124. "region_settings": "intl.cpl",
  125. "local_users": "lusrmgr.msc",
  126. "magnifier": "magnify",
  127. "mouse_settings": "main.cpl",
  128. "sound_settings": "mmsys.cpl",
  129. "system_config": "msconfig",
  130. "system_info": "msinfo32",
  131. "paint": "mspaint",
  132. "network_connections": "ncpa.cpl",
  133. "notepad": "notepad",
  134. "on_screen_keyboard": "osk",
  135. "performance_monitor": "perfmon.msc",
  136. "power_options": "powercfg.cpl",
  137. "powershell": "powershell",
  138. "registry_editor": "regedit",
  139. "registry_editor_alt": "regedit32",
  140. "rsop": "rsop.msc",
  141. "security_policy": "secpol.msc",
  142. "services": "services.msc",
  143. "admin_tools": "shell:adminTools",
  144. "cache": "shell:cache",
  145. "camera_roll": "shell:camera roll",
  146. "common_admin_tools": "shell:common adminTools",
  147. "common_documents": "shell:common documents",
  148. "common_programs": "shell:common programs",
  149. "common_startup": "shell:common startup",
  150. "common_templates": "shell:common templates",
  151. "conflict_folder": "shell:conflictresolutionfolder",
  152. "connections": "shell:connections",
  153. "control_panel_folder": "shell:controlpanelfolder",
  154. "cookies": "shell:cookies",
  155. "desktop": "shell:desktop",
  156. "device_metadata": "shell:deviceMetadataStore",
  157. "documents": "shell:documents",
  158. "downloads": "shell:downloads",
  159. "fonts": "shell:fonts",
  160. "games": "shell:games",
  161. "history": "shell:history",
  162. "libraries": "shell:libraries",
  163. "local_appdata": "shell:local appdata",
  164. "music": "shell:music",
  165. "my_music": "shell:my music",
  166. "my_pictures": "shell:my pictures",
  167. "my_videos": "shell:my video",
  168. "network_shortcuts": "shell:netHood",
  169. "network_places": "shell:networkplaces",
  170. "original_images": "shell:original images",
  171. "photo_album": "shell:photo album",
  172. "pictures": "shell:pictures",
  173. "print_queue": "shell:printHood",
  174. "printers": "shell:printersfolder",
  175. "profile": "shell:profile",
  176. "programs": "shell:programs",
  177. "recent": "shell:recent",
  178. "recycle_bin": "shell:recyclebinfolder",
  179. "screenshots": "shell:screenshots",
  180. "searches": "shell:searches",
  181. "sendto": "shell:sendto",
  182. "onedrive_docs": "shell:skydriedocuments",
  183. "onedrive": "shell:skydrive",
  184. "onedrive_camera": "shell:skydrivecamera",
  185. "onedrive_music": "shell:skydrivemusic",
  186. "onedrive_pictures": "shell:skydrivepictures",
  187. "onedrive_videos": "shell:skydrivevideos",
  188. "startup": "shell:startup",
  189. "sync_results": "shell:syncresultsfolder",
  190. "sync_setup": "shell:syncsetupfolder",
  191. "users_files": "shell:usersfilesfolder",
  192. "user_profiles": "shell:usersprofiles",
  193. "videos": "shell:videos",
  194. "volume_mixer": "sndvol",
  195. "snipping_tool": "snippingtool",
  196. "system_properties": "sysdm.cpl",
  197. "task_manager": "taskmgr",
  198. "task_scheduler": "taskschd.msc",
  199. "date_time": "timedate.cpl",
  200. "ease_access": "utilman",
  201. "windows_version": "winver",
  202. "wmi": "wmimgmt.msc",
  203. "wordpad": "write",
  204. "security_center": "wscui.cpl"
  205. },
  206. "FilesOps": {
  207. "cpy": "copy /Y <src> <dst>",
  208. "xcpy": "xcopy <src> <dst> /E /I /H /Y",
  209. "robocpy": "robocopy <src> <dst> /MIR /MT:8 /R:2 /W:3",
  210. "mv": "move /Y <src> <dst>",
  211. "del": "del /Q /F <file>",
  212. "ren": "ren <old_name> <new_name>",
  213. "md": "mkdir <dir>",
  214. "rd": "rmdir /S /Q <dir>",
  215. "pscpy": "Copy-Item <src> <dst> -Recurse -Force",
  216. "psmv": "Move-Item <src> <dst> -Force",
  217. "psdel": "Remove-Item <path> -Force -Recurse",
  218. "psren": "Rename-Item <file> <new_name>",
  219. "copy_combine_txt": "COPY Z:\\file1.txt+Z:\\file2.txt+Z:\\file3.txt Z:\\combined.txt",
  220. "copy_jpg_rar_merge1": "COPY /b DATA\\PIC.jpg + File.rar DATA\\PICNEW.jpg",
  221. "copy_jpg_rar_merge2": "COPY /b DATA\\P.jpg + PIC.rar DATA\\PICR.jpg",
  222. "copy_merge_txt": "COPY myfile1.txt+myfile2.txt",
  223. "copy_embed_text": "COPY /b Pic.jpg+Text.txt NewPic.jpg",
  224. "copy_file": "COPY file.txt C:\\Destination\\",
  225. "copy_all_txt_backup": "COPY *.txt D:\\Backup\\",
  226. "copy_rename": "COPY original.txt C:\\Destination\\renamed.txt",
  227. "copy_recursive": "COPY /s source\\*.* destination\\",
  228. "copy_no_overwrite": "COPY /-y file.txt C:\\Destination\\",
  229. "copy_hidden_recursive": "COPY /h /s source\\*.* destination\\",
  230. "copy_with_error": "COPY file.txt C:\\Destination\\ || echo Error occurred",
  231. "copy_all_to_c": "COPY *.txt C:\\",
  232. "copy_all_to_d": "COPY *.txt D:\\",
  233. "copy_everything_d": "COPY *.* D:",
  234. "copy_exe_to_msi": "COPY Y:\\install\\j93n.exe Y:\\more\\m1284.msi",
  235. "copy_iso_downloads": "COPY Z:\\Software\\program.iso C:\\Users\\Jon\\Downloads\\Programs\\",
  236. "move_doc_d": "MOVE example.doc D:\\",
  237. "move_docs_stats": "MOVE *.doc C:\\statistics",
  238. "move_all_data": "MOVE /y \"*.*\" DATA\\",
  239. "move_drive": "MOVE /y \"E:\\*.*\" D:\\",
  240. "move_temp": "MOVE C:\\Windows\\Temp\\*.* C:\\Temp",
  241. "move_named": "MOVE \"computer hope\" example",
  242. "mv_note": "MV (not native CMD, use MOVE instead)",
  243. "mv_rename": "MV hope.txt hope.html",
  244. "rename_file": "ren oldname.txt newname.txt",
  245. "rename_all_txt_bak": "RENAME *.txt *.bak",
  246. "rename_prefix": "RENAME * 1_*",
  247. "rename_space_file": "RENAME \"computer hope.txt\" \"example file.txt\"",
  248. "rename_ext": "REN *.* *.EXT",
  249. "rename_doc_txt": "REN *.DOC *.TXT",
  250. "rename_jpeg_txt": "REN *.JPEG *.TXT",
  251. "rename_lnk_txt": "REN *.LNK *.TXT",
  252. "rename_avi_txt": "REN *.AVI *.TXT",
  253. "rename_mpeg_txt": "REN *.MPEG *.TXT",
  254. "rename_com_txt": "REN *.COM *.TXT",
  255. "rename_bat_txt": "REN *.BAT *.TXT",
  256. "rename_loop_recursive": "for /r %f in (*.pyw) do ren \"%f\" *.py",
  257. "rename_loop_simple": "for %f in (*.pyw) do ren \"%f\" \"%~nf.py\"",
  258. "robocopy_basic": "robocopy source dest /b",
  259. "robocopy_backup": "robocopy source dest /backup",
  260. "robocopy_bytes": "robocopy source dest /bytes",
  261. "robocopy_full": "robocopy source dest /copyall",
  262. "xcopy_structure": "XCOPY C:\\Client032 C:\\Client033 /t /e",
  263. "xcopy_move_delete": "XCOPY /y \"*.*\" D:\\ | DEL \"*.rar\"",
  264. "xcopy_pdf_docs": "XCOPY D:\\file.pdf %HOMEPATH%\\Documents\\",
  265. "xcopy_all_data": "XCOPY /y \"*.*\" DATA\\",
  266. "xcopy_audio": "XCOPY *.shn *.wav",
  267. "delete_all_jpg": "DEL /S *.jpg",
  268. "delete_file": "DEL C:\\path\\to\\file.txt",
  269. "delete_all_folder": "DEL C:\\path\\to\\directory\\*.*",
  270. "delete_txt": "DEL C:\\path\\to\\directory\\*.txt",
  271. "delete_all": "DEL *.*",
  272. "delete_recursive": "DEL /s C:\\path\\to\\directory\\*.*",
  273. "delete_quiet": "DEL /q C:\\path\\to\\directory\\*.*",
  274. "delete_temp": "DEL C:\\Windows\\Temp\\*.*",
  275. "delete_prefetch": "DEL C:\\Windows\\Prefetch\\*.*",
  276. "delete_user_temp": "DEL C:\\Users\\Najeeb\\AppData\\Local\\Temp\\*.*",
  277. "delete_rar": "DEL \"*.rar\"",
  278. "delete_force": "DEL /F *.ext",
  279. "delete_all_quiet": "DEL /S /Q \"*.*\"",
  280. "delete_readonly": "DEL /q /a:r C:\\Users\\Tim\\Documents\\*.docx",
  281. "delete_drive": "DEL J:\\*.* /f /s /q",
  282. "delete_logs": "DEL %WINDIR%\\*.log /a /s /q /f",
  283. "remove_dir": "RD C:\\test",
  284. "remove_dir_recursive": "RMDIR C:\\test /s",
  285. "remove_drive": "RD /s /q J:\\",
  286. "delete_profiles": "DELPROF",
  287. "delete_tree": "DELTREE"
  288. },
  289. "Network": {
  290. "ipcfg": "ipconfig /all",
  291. "ping": "ping -n 4 <host>",
  292. "trcrt": "tracert <host>",
  293. "dns": "nslookup <host>",
  294. "netst": "netstat -ano",
  295. "route": "route print",
  296. "psping": "Test-Connection <host> -Count 4 -ErrorAction SilentlyContinue",
  297. "pstnc": "Test-NetConnection <host> -Port <port>",
  298. "psip": "Get-NetIPAddress | Where-Object AddressState -eq \"Preferred\"",
  299. "psdns": "Resolve-DnsName <host>"
  300. },
  301. "Services": {
  302. "svcq": "sc query state= all",
  303. "svcstart": "net start <service>",
  304. "svcstop": "net stop <service>",
  305. "svcdel": "sc delete <service>",
  306. "pssvc": "Get-Service | Sort-Object Status",
  307. "pssvc_start": "Start-Service -Name <service>",
  308. "pssvc_stop": "Stop-Service -Name <service> -Force",
  309. "pssvc_restart": "Restart-Service -Name <service> -Force"
  310. },
  311. "Media FFmpeg": {
  312. "ffconv": "ffmpeg -i <input> -c:v libx264 -crf 23 -preset medium <output>.mp4",
  313. "ffaudio": "ffmpeg -i <input> -vn -acodec libmp3lame -q:a 2 <output>.mp3",
  314. "fftrim": "ffmpeg -ss 00:00:10 -i <input> -to 00:00:30 -c copy <output>",
  315. "ffmerge": "ffmpeg -f concat -safe 0 -i list.txt -c copy <output>",
  316. "ffresize": "ffmpeg -i <input> -vf scale=1280:720 <output>",
  317. "ffcomp": "ffmpeg -i <input> -c:v libx265 -crf 28 -c:a copy <output>",
  318. "ffinfo": "ffmpeg -i <input> -hide_banner",
  319. "ffsub": "ffmpeg -i <input> -vf subtitles=<file>.srt <output>"
  320. },
  321. "Images": {
  322. "imgconv": "magick <input> <output>.png",
  323. "imgresize": "magick <input> -resize 1920x1080 <output>",
  324. "imgcrop": "magick <input> -gravity Center -crop 1000x1000+0+0 <output>",
  325. "imgfmt": "magick <input> -quality 85 <output>.jpg",
  326. "imgcomp": "magick <input> -strip -interlace Plane -gaussian-blur 0.05 -quality 85% <output>",
  327. "imginfo": "magick identify -verbose <input>",
  328. "imgmontage": "magick montage -tile 3x3 -geometry +2+2 <input>*.jpg <output>",
  329. "imgwatermark": "magick <input> -gravity SouthEast -draw \"image Over 10,10 0,0 '<wm.png>'\" <output>"
  330. },
  331. "Wget Downloads": {
  332. "basic_download": "wget https://example.com/file.zip",
  333. "download_custom_name": "wget -O output-file.zip https://example.com/file.zip",
  334. "resume_download": "wget -c https://example.com/largefile.zip",
  335. "background_download": "wget -b https://example.com/largefile.zip",
  336. "background_log": "wget -b -o download.log https://example.com/largefile.zip",
  337. "download_list": "wget -i filelist.txt",
  338. "download_list_alt": "wget -i download_list.txt",
  339. "limit_speed": "wget --limit-rate=200k https://example.com/largefile.zip",
  340. "limit_speed_high": "wget --limit-rate=500k https://example.com/largefile.zip",
  341. "full_retry": "wget --limit-rate=200k --continue --show-progress --tries=0 --waitretry=5 https://example.com/largefile.zip",
  342. "recursive_basic": "wget -r https://example.com/",
  343. "recursive_level": "wget -r --level=2 https://example.com/",
  344. "recursive_images": "wget -nd -r -p -A jpg,bmp,gif,png https://example.com/",
  345. "recursive_docs": "wget -r -A pdf,doc https://example.com/documents/",
  346. "mirror_site": "wget --mirror --convert-links --adjust-extension --page-requisites --no-parent https://example.com",
  347. "continue_custom_path": "wget -c \"URL\" -P Downloads/",
  348. "download_path": "wget -i Download.txt -P Downloads/",
  349. "ftp_download": "wget -r FTP -P Downloads/",
  350. "user_agent": "wget --user-agent=\"Mozilla/5.0 (Windows NT 10.0; Win64; x64)\" https://example.com/file.zip",
  351. "ftp_auth": "wget ftp://username:[email protected]/file.zip",
  352. "http_auth": "wget --user=username --password=password https://example.com/securefile.zip",
  353. "cookies_download": "wget --load-cookies cookies.txt https://example.com/protected/file.zip",
  354. "script_execute": "wget -O - https://example.com/script.sh | bash",
  355. "wget": "wget <url>",
  356. "wgetresume": "wget -c <url>",
  357. "wgetrec": "wget -r -l 1 -np -k <url>",
  358. "wgetlist": "wget -i urls.txt",
  359. "wgetagent": "wget --user-agent=\"Mozilla/5.0\" <url>",
  360. "ytdlget": "youtube-dl <url>",
  361. "ytdlfmt": "youtube-dl -f \"bestvideo+bestaudio\" <url>",
  362. "ytdlaudio": "youtube-dl -x --audio-format mp3 <url>",
  363. "ytdlbatch": "youtube-dl -a playlist.txt",
  364. "ytdlsub": "youtube-dl --write-sub --sub-lang en <url>"
  365. },
  366. "Others": {
  367. "tsklist": "tasklist",
  368. "tskkill": "taskkill /PID <pid> /F",
  369. "shut": "shutdown /s /t 0",
  370. "cls": "cls",
  371. "find": "findstr /I \"pattern\" <file>",
  372. "where": "where <command>",
  373. "sfc": "sfc /scannow",
  374. "chkdsk": "chkdsk /f /r",
  375. "pstsk": "Get-Process | Sort-Object CPU -Descending | Select-Object -First 10",
  376. "psfind": "Select-String -Pattern \"pattern\" -Path <file>",
  377. "psenv": "$env:PATH",
  378. "psdate": "Get-Date -Format \"yyyy-MM-dd_HH-mm-ss\""
  379. },
  380. "WMIC_Commands": {
  381. "wmic_basic": "wmic",
  382. "wmic_help": "wmic /?",
  383. "wmic_remote_file": "wmic /node:@computers.txt os get caption",
  384. "wmic_remote_auth": "wmic /node:computername /user:admin /password:pass os get caption",
  385. "wmic_remote": "wmic /node:computername os get caption",
  386. "wmic_localhost": "wmic /node:localhost os get caption",
  387. "baseboard_basic": "wmic baseboard",
  388. "baseboard_list": "wmic baseboard get /format:list",
  389. "baseboard_caption": "wmic baseboard get caption",
  390. "baseboard_manufacturer": "wmic baseboard get manufacturer",
  391. "baseboard_product": "wmic baseboard get product",
  392. "baseboard_serial": "wmic baseboard get serialnumber",
  393. "baseboard_version": "wmic baseboard get version",
  394. "bios_basic": "wmic bios",
  395. "bios_list": "wmic bios get /format:list",
  396. "bios_version": "wmic bios get biosversion",
  397. "bios_serial": "wmic bios get serialnumber",
  398. "bios_manufacturer": "wmic bios get manufacturer",
  399. "bios_release": "wmic bios get releasedate",
  400. "system_basic": "wmic computersystem",
  401. "system_list": "wmic computersystem get /format:list",
  402. "system_name": "wmic computersystem get name",
  403. "system_model": "wmic computersystem get model",
  404. "system_manufacturer": "wmic computersystem get manufacturer",
  405. "system_ram": "wmic computersystem get totalphysicalmemory",
  406. "cpu_basic": "wmic cpu",
  407. "cpu_list": "wmic cpu get /format:list",
  408. "cpu_name": "wmic cpu get name",
  409. "cpu_cores": "wmic cpu get numberofcores",
  410. "cpu_threads": "wmic cpu get numberoflogicalprocessors",
  411. "cpu_speed": "wmic cpu get maxclockspeed",
  412. "cpu_load": "wmic cpu get loadpercentage",
  413. "disk_basic": "wmic diskdrive",
  414. "disk_list": "wmic diskdrive get /format:list",
  415. "disk_model": "wmic diskdrive get model",
  416. "disk_size": "wmic diskdrive get size",
  417. "disk_serial": "wmic diskdrive get serialnumber",
  418. "env_basic": "wmic environment",
  419. "env_list": "wmic environment get /format:list",
  420. "env_name": "wmic environment get name",
  421. "env_value": "wmic environment get variablevalue",
  422. "feature_basic": "wmic feature",
  423. "feature_list": "wmic feature get /format:list",
  424. "feature_name": "wmic feature get name",
  425. "logicaldisk_basic": "wmic logicaldisk",
  426. "logicaldisk_list": "wmic logicaldisk get /format:list",
  427. "logicaldisk_name": "wmic logicaldisk get name",
  428. "logicaldisk_fs": "wmic logicaldisk get filesystem",
  429. "logicaldisk_free": "wmic logicaldisk get freespace",
  430. "logicaldisk_size": "wmic logicaldisk get size",
  431. "ram_basic": "wmic memorychip",
  432. "ram_list": "wmic memorychip get /format:list",
  433. "ram_capacity": "wmic memorychip get capacity",
  434. "ram_speed": "wmic memorychip get speed",
  435. "ram_manufacturer": "wmic memorychip get manufacturer",
  436. "nic_basic": "wmic nic",
  437. "nic_list": "wmic nic get /format:list",
  438. "nic_name": "wmic nic get name",
  439. "nic_mac": "wmic nic get macaddress",
  440. "nic_status": "wmic nic get netconnectionstatus",
  441. "os_basic": "wmic os",
  442. "os_list": "wmic os get /format:list",
  443. "os_name": "wmic os get caption",
  444. "os_version": "wmic os get version",
  445. "os_arch": "wmic os get osarchitecture",
  446. "os_boot": "wmic os get lastbootuptime",
  447. "printer_basic": "wmic printer",
  448. "printer_list": "wmic printer get /format:list",
  449. "printer_name": "wmic printer get name",
  450. "printer_status": "wmic printer get printerstatus",
  451. "process_basic": "wmic process list",
  452. "process_full": "wmic process list full",
  453. "process_name": "wmic process get name",
  454. "process_id": "wmic process get processid",
  455. "process_kill_name": "wmic process where name=\"notepad.exe\" call terminate",
  456. "process_kill_pid": "wmic process where processid=1234 call terminate",
  457. "process_create_cmd": "wmic process call create \"cmd.exe /c echo test\"",
  458. "process_create_notepad": "wmic process call create \"notepad.exe\"",
  459. "product_basic": "wmic product",
  460. "product_list": "wmic product get /format:list",
  461. "product_name": "wmic product get name",
  462. "product_version": "wmic product get version",
  463. "updates_basic": "wmic qfe",
  464. "updates_list": "wmic qfe get /format:list",
  465. "updates_hotfix": "wmic qfe get hotfixid",
  466. "service_basic": "wmic service",
  467. "service_list": "wmic service list",
  468. "service_full": "wmic service list full",
  469. "service_name": "wmic service get name",
  470. "service_state": "wmic service get state",
  471. "service_start": "wmic service where \"name='spooler'\" call startservice",
  472. "service_stop": "wmic service where \"name='spooler'\" call stopservice",
  473. "share_basic": "wmic share",
  474. "share_list": "wmic share get /format:list",
  475. "share_name": "wmic share get name",
  476. "startup_basic": "wmic startup",
  477. "startup_list": "wmic startup get /format:list",
  478. "startup_command": "wmic startup get command",
  479. "user_basic": "wmic useraccount",
  480. "user_list": "wmic useraccount list",
  481. "user_name": "wmic useraccount get name",
  482. "user_status": "wmic useraccount get status"
  483. },
  484. "START_Links": {
  485. "chatgpt": "start https://chatgpt.com",
  486. "qwen_ai": "start https://chat.qwen.ai",
  487. "google_search": "start https://www.google.com/search?q=",
  488. "google_images": "start https://www.google.com/search?q=NAJEEB&tbm=isch",
  489. "duckduckgo": "start https://duckduckgo.com/",
  490. "yahoo_search": "start https://search.yahoo.com/search?p=",
  491. "wikipedia_search": "start http://en.wikipedia.org/wiki/Special:Search?search=",
  492. "youtube": "start https://www.youtube.com/",
  493. "youtube_search": "start https://www.youtube.com/results?search_query=",
  494. "dailymotion": "start https://www.dailymotion.com/pk",
  495. "flickr_search": "start https://www.flickr.com/search/?q=",
  496. "translate_deepl": "start https://www.deepl.com/en/translator",
  497. "remove_bg": "start https://www.remove.bg/",
  498. "cooltext": "start https://cooltext.com/",
  499. "icon_archive": "start https://iconarchive.com/",
  500. "png_eg": "start https://www.pngegg.com/en/",
  501. "convert_ico": "start https://convertico.com/",
  502. "apk_downloader": "start https://apps.evozi.com/apk-downloader",
  503. "virus_scan": "start https://www.virustotal.com/gui/home/upload",
  504. "link_extractor_1": "start https://www.prepostseo.com/link-extractor",
  505. "link_extractor_2": "start https://hackertarget.com/extract-links/",
  506. "software_filehippo": "start https://filehippo.com/",
  507. "software_portable": "start https://www.portablefreeware.com/",
  508. "software_filecroco": "start https://www.filecroco.com/",
  509. "pastebin_dos": "start https://pastebin.com/archive/dos",
  510. "pastebin_python": "start https://pastebin.com/archive/python",
  511. "pastebin_user1": "start https://pastebin.com/u/hackoo",
  512. "pastebin_user2": "start https://pastebin.com/u/Najeebsk",
  513. "stackoverflow_profile": "start https://stackoverflow.com/users/3080770/hackoo",
  514. "sat_forum": "start https://sat-forum.net/viewforum.php?f=41&start=50",
  515. "iptv_forum": "start https://satworld-forum.com/index.php?threads/mac-list-iptv.283/",
  516. "lyngsat": "start https://www.lyngsat.com",
  517. "archive_org": "start https://archive.org/",
  518. "andisearch": "start https://andisearch.com/",
  519. "free_tv_1": "start https://tubitv.com/home",
  520. "free_tv_2": "start https://watch.plex.tv/",
  521. "free_tv_3": "start https://www.crackle.com/",
  522. "free_tv_4": "start https://www.popcornflix.com/",
  523. "free_tv_5": "start https://filmzie.com/home",
  524. "free_tv_6": "start https://www.yidio.com/"
  525. },
  526. "YTDLP_Commands": {
  527. "update_ytdlp": "yt-dlp -U",
  528. "update_youtubedl": "youtube-dl -U",
  529. "basic_download": "youtube-dl https://www.youtube.com/watch?v=VIDEO_ID",
  530. "best_quality": "youtube-dl -f best https://www.youtube.com/watch?v=VIDEO_ID",
  531. "specific_format": "youtube-dl -f 22 https://www.youtube.com/watch?v=VIDEO_ID",
  532. "list_formats": "youtube-dl -F https://www.youtube.com/watch?v=VIDEO_ID",
  533. "video_720p": "youtube-dl -f \"bestvideo[height<=720]+bestaudio/best[height<=720]\" https://www.youtube.com/watch?v=VIDEO_ID",
  534. "audio_mp3": "youtube-dl -x --audio-format mp3 https://www.youtube.com/watch?v=VIDEO_ID",
  535. "audio_high_quality": "youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 https://www.youtube.com/watch?v=VIDEO_ID",
  536. "subtitles_download": "youtube-dl --write-sub --sub-lang en https://www.youtube.com/watch?v=VIDEO_ID",
  537. "auto_subtitles": "youtube-dl --write-auto-sub https://www.youtube.com/watch?v=VIDEO_ID",
  538. "playlist_download": "youtube-dl -i --yes-playlist https://www.youtube.com/playlist?list=PLAYLIST_ID",
  539. "playlist_partial": "youtube-dl -i --playlist-items 1-5 https://www.youtube.com/playlist?list=PLAYLIST_ID",
  540. "playlist_start": "youtube-dl --playlist-start 5 https://www.youtube.com/playlist?list=PLAYLIST_ID",
  541. "batch_download": "youtube-dl -a list_of_urls.txt",
  542. "archive_skip": "youtube-dl --download-archive downloaded.txt https://www.youtube.com/playlist?list=PLAYLIST_ID",
  543. "custom_filename": "youtube-dl -o \"%(uploader)s/%(date)s/%(title)s.%(ext)s\" https://www.youtube.com/watch?v=VIDEO_ID",
  544. "limit_speed": "youtube-dl --limit-rate 500k https://www.youtube.com/watch?v=VIDEO_ID",
  545. "simulate": "youtube-dl --simulate https://www.youtube.com/watch?v=VIDEO_ID",
  546. "proxy_use": "youtube-dl --proxy http://proxy:port https://www.youtube.com/watch?v=VIDEO_ID",
  547. "user_agent": "youtube-dl --user-agent \"Mozilla/5.0\" https://www.youtube.com/watch?v=VIDEO_ID",
  548. "json_info": "youtube-dl -j https://www.youtube.com/watch?v=VIDEO_ID",
  549. "get_url": "youtube-dl --get-url https://www.youtube.com/watch?v=VIDEO_ID",
  550. "get_title_duration": "youtube-dl --get-title --get-duration https://www.youtube.com/watch?v=VIDEO_ID",
  551. "external_ffmpeg_trim": "youtube-dl --external-downloader ffmpeg --external-downloader-args \"-ss 00:01:00 -to 00:02:00\" https://www.youtube.com/watch?v=VIDEO_ID"
  552. }
  553. }
Advertisement
Comments
  • Exozokon
    53 days
    # CSS 0.84 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
  • Fexrerax
    47 days
    # CSS 0.06 KB | 0 0
    1. You literally stole this exploit from https://t.me/theprotocolone
  • Textelix
    27 days
    # CSS 0.85 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1ifNm-s74mX7GChaEzSJ1dVQCy1SrSxlMVRYi8ys0rgQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
  • Garnenor
    11 hours
    # CSS 0.84 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1ifNm-s74mX7GChaEzSJ1dVQCy1SrSxlMVRYi8ys0rgQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
Add Comment
Please, Sign In to add comment