B315s-938 admin access

Mga boss ibang way kasi yung triny ko,di kasi ako marunong magcode ng ganyan,ung sakin gumamit lang ako decrypt tool umabot lang hanggang letter plaintext ng password.Pero may napansin akong pattern sa password ko na dapat makuha ko gamit randomized salt.Tapos ng di ko makuha binalikan ko ung unang clue ung may nck at nagets ko na,nakagawa ako ng list ng 11 digit at isa dapat dun password k.Pero ng triny k lahat walang gmuna,merong isa na nagmatch dun sa pattern ng password na dapat makuha ko gamit ung decryption method na una ko na ginawa pero di rin gumana.Possible ba mapalitan default admin password k?nireset k n rin b315s router wala p rin.Any ideas po please?
 
Mga boss ibang way kasi yung triny ko,di kasi ako marunong magcode ng ganyan,ung sakin gumamit lang ako decrypt tool umabot lang hanggang letter plaintext ng password.Pero may napansin akong pattern sa password ko na dapat makuha ko gamit randomized salt.Tapos ng di ko makuha binalikan ko ung unang clue ung may nck at nagets ko na,nakagawa ako ng list ng 11 digit at isa dapat dun password k.Pero ng triny k lahat walang gmuna,merong isa na nagmatch dun sa pattern ng password na dapat makuha ko gamit ung decryption method na una ko na ginawa pero di rin gumana.Possible ba mapalitan default admin password k?nireset k n rin b315s router wala p rin.Any ideas po please?

hindi po ibig sabihin nun mali yung nagenerate mo
 
Hello Po, Baka naman po pwde maka pa admin access rin po ako sa B315S-938 ,puyat na po ako sa kakahanap at solve ng formula sa excel.salamat po in advance.

Model:B315s-938
IMEI:864436033073397
LAN MAC:5C:C3:07:C9:4E:AE
 
Medyo nakukuha ko yun mga CLUE binigay ni Boss
jeromelaliagg
. Laptop/PC nalang kulang HAHAHAHA 😂. Hirap pag cellphone.

Pero sana mabiyaan ako ng Free Admin Access 👌☺.

MAC : 5C:C3:07:8B:AF:B7

Salamat ☺
 
Pahabol po boss jeromelaliagg
Eto po mac address ko:
2C:78:0E:FF:A2:C8

Sakit na ng ulo ko kaka research, ito lang script nato nahanap ko, di ko rin mapa run kasi java lang alam ko..haha
 
Eto pa isa galing sa SALTED hint ni boss jerome
PS di ko rin maintindihan..,haha

saltedPassword: function(password, salt, iterations) {
return CryptoJS.PBKDF2(password, salt, {
keySize: this.cfg.keySize,
iterations:iterations,
hasher: this.cfg.hasher
});
},
/**
* ClientKey = HMAC(saltPwd, "Client Key")
*/
clientKey: function(saltPwd) {
return this.cfg.hmac(saltPwd, "Client Key");
},
/**
* ServerKey = HMAC(saltPwd, "Server Key")
*/
serverKey: function(saltPwd) {
return this.cfg.hmac(saltPwd, "Server Key");
},
/**
* StoredKey = HASH(ClientKey)
*/
storedKey: function(clientKey) {
var hasher = this.cfg.hasher.create();
hasher.update(clientKey);

return hasher.finalize();
},
/**
* Signature = HMAC(StoredKey, AuthMessage)
*/
signature: function(storedKey, authMessage) {
return this.cfg.hmac(storedKey, authMessage);
},
/**
* ClientProof = ClientKey ^ ClientSignature
*/
clientProof: function (password, salt, iterations, authMessage) {
var spwd = this.saltedPassword(password, salt, iterations);
var ckey = this.clientKey(spwd);
var skey = this.storedKey(ckey);
var csig = this.signature(skey, authMessage);

for (var i = 0; i < ckey.sigBytes/4; i += 1) {
ckey.words = ckey.words ^ csig.words
}
return ckey.toString();
},
/**
* ServerProof = HMAC(ServerKey, AuthMessage)
*/
serverProof: function (password, salt, iterations, authMessage) {
var spwd = this.saltedPassword(password, salt, iterations);
var skey = this.serverKey(spwd);
var sig = this.signature(skey, authMessage);
return sig.toString();
}
});

1589166388596.webp
 

About this Thread

  • 2K
    Replies
  • 228K
    Views
  • 599
    Participants
Last reply from:
XCRESCENT

Trending Topics

Online now

Members online
458
Guests online
1,633
Total visitors
2,091

Forum statistics

Threads
2,293,533
Posts
29,084,573
Members
1,208,836
Latest member
junior1
Back
Top