This post is by a banned member (WEARE) - Unhide
OP 18 November, 2019 - 06:07 PM
(This post was last modified: 18 November, 2019 - 06:09 PM by WEARE.)
Reply
:7e
:97
:ce
:53
...
is there any advice on how to delete the last 3 digits?
how can I delete these last 3 digits? '' :7e ''
when these last 3 digits are removed
Looks encrypted with ''MD5''
Thank You so Much for Everything
This post is by a banned member (TAAYEB) - Unhide
18 November, 2019 - 06:17 PM
(This post was last modified: 18 November, 2019 - 06:20 PM by TAAYEB.)
Reply
try replacing everything after : with space using notepad++
This post is by a banned member (WEARE) - Unhide
OP 18 November, 2019 - 06:20 PM
(This post was last modified: 18 November, 2019 - 06:21 PM by WEARE.)
Reply
(18 November, 2019 - 06:17 PM)jumia123 Wrote: Show Moretry replacing everything after : with space using notepad++
I will try
Thank You so Much for Everything
This post is by a banned member (TheBusinessMan) - Unhide
18 November, 2019 - 07:56 PM
Reply
use
https://delim.co/ to remove the second (:) delimiter from all the lines. This will give you only the username and password.
This post is by a banned member (UberFuck) - Unhide
18 November, 2019 - 09:43 PM
Reply
PowerShell yo.
Show ContentSpoiler:
$InputPath = "C:\temp\HashWithDirt.txt"
$OutputPath = "C:\temp\CleanHash.txt"
$sw = New-Object System.IO.StreamWriter $OutputPath
$cnt = 0
foreach ($line in [System.IO.File]::ReadLines($InputPath))
{
$cnt++
if($cnt % 1000 -eq 0) #only show progress every 1000...more frequent progress updates will slow things down
{
Write-Progress -Activity "Processing File $InputPath" -Status "Current Line: $cnt"
}
$ixLastDelim = $line.LastIndexOf(":")
$trail = $line.Substring($ixLastDelim)
if($trail.Length -eq 3) # make sure the trailing sequence has the number of chars expected
{
$sw.WriteLine($line.Substring(0,$ixLastDelim).Trim())
}
}
$sw.Close()