Hacking Articles Tips Tricks Videos Tutorials
467 subscribers
65.7K photos
15 videos
157 files
131K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
Dark Reading: Attacks/Breaches
The Secret to Zero Trust You Need to Know

If every application, device, and bot need access and authentication at some point, the need for managing and controlling the confidential data that allows those functions gets staggeringly large.
hacking: security in practice
Pattern removal from Xiaomi mobile phones

Don't judge, a girl gave these to me and it belongs to a friend of a friend of hers that have passed away since 1-2 years ago.

They don't care about the phones only the data inside.

One phone is "Xiaomi Mi 8 Lite" and the other one is "Xiaomi Redmi Note 5"

What should i do with them?

Thanks in advance.

submitted by /u/JuicyNatural
[link] [comments]
hacking: security in practice
Does anybody have a leaked version of cobalt strike?

It would be greatly appreciated. Looking for a version I can run on kali. I know it was leaked and I have a few assholes trying to sell me leaked software for $500. Just drop a comment or PM me. Thank you :)

submitted by /u/Shitty_sam7
[link] [comments]
hacking: security in practice
Is it possible to evade windows 10 firewall ?

I have bwen playing around with nmap and a windows 10 vm. I have noticed that even with firewall evasion techniques, such as fragmentation, mac spoofing, mtu, etc... it is not possible to scan the ports of the windows machine. Unless I change windows firewall rules ofc. I checked the firewall rules and it states that it blocks all incoming traffic in default settings. Since there is essentially no rule on incoming traffic, other than to ignore/block it, is it even possible to evade windows firewall ? It does seem inpenetrable to me since the rule is to basically not let anyone in.

EDIT: Typo

submitted by /u/JeppNeb
[link] [comments]
Master the power of exploiting most complex SQL injectionsContinue reading on InfoSec Write-ups » (https://infosecwriteups.com/the-mystery-of-sqlmaps-eval-f6c7bf43e1f?source=rss------bug_bounty-5)
The mystery of SQLMap’s --eval

Master the power of exploiting most complex SQL injectionsContinue reading on InfoSec Write-ups »
Read more...
Caso de uso não autorizados de chave da API do Google Maps

Fala galera,Continue reading on Medium »
Read more...
Hacking Articles Tips Tricks Videos Tutorials
Photo
Exploit Collector
ImpressCMS 1.4.2 Authentication Bypass

https://4.bp.blogspot.com/-42b-8Yu8ql4/WWlvfoDuyhI/AAAAAAAAIQE/GMGQD7Uo7DMncRccI_LNcWgfvYRkd0zwQCLcBGAs/s1600/h86.png
ImpressCMS versions 1.4.2 and below suffer from an authentication bypass vulnerability.

MD5 | cb96afceb1d5f28665500ba31bf166ab

Download
-----------------------------------------------------------------------
ImpressCMS <=
-----------------------------------------------------------------------
[-] Software Link:

https://www.impresscms.org
[-] Affected Versions:

Version 1.4.2 and prior versions.
[-] Vulnerability Description:

The vulnerability is located in the /plugins/preloads/autologin.php script:

45. $uname = $myts->stripSlashesGPC($autologinName);
46. $pass = $myts->stripSlashesGPC($autologinPass);
47. if (empty($uname) || is_numeric($pass)) {
48. $user = false ;
49. } else {
50. // V3
51. $uname4sql = addslashes($uname);
52. $criteria = new icms_db_criteria_Compo(new
icms_db_criteria_Item('login_name', $uname4sql));
53. $user_handler = icms::handler('icms_member_user');
54. $users = $user_handler->getObjects($criteria, false);
55. if (empty($users) || count($users) != 1) {
56. $user = false ;
57. } else {
58. // V3.1 begin
59. $user = $users[0] ;
60. $old_limit = time() -
(defined('ICMS_AUTOLOGIN_LIFETIME') ? ICMS_AUTOLOGIN_LIFETIME : 604800);
61. list($old_Ynj, $old_encpass) = explode(':', $pass);
62. if (strtotime($old_Ynj) < $old_limit ||
md5($user->getVar('pass') .
63. ICMS_DB_PASS . ICMS_DB_PREFIX . $old_Ynj)
!= $old_encpass)
64. {
65. $user = false;
66. }

User input passed through the "autologin_uname" and "autologin_pass"
cookie values is being used at lines 51-54 to fetch an user object from
the database, and then at lines 62-63 to check the correctness of the
user's password. The vulnerability exists because of an unsafe way of
comparing those parameters, due to comparison operator != is being used
instead of !== within the "if" statement at lines 62-63. The latter
operator returns "true" only if the compared values are equal and the
same type, while the first compares the values after "type juggling".
This might be exploited to potentially bypass the authentication
mechanism and login as any user without the knowledge of the password.
[-] Solution:

Upgrade to version 1.4.3 or later.
[-] Disclosure Timeline:

[20/01/2021] - Vendor notified through HackerOne
[02/02/2021] - Vendor replied this has been resolved and will be in
ImpressCMS 1.4.3
[03/02/2021] - CVE number assigned
[06/02/2022] - Version 1.4.3 released
[22/03/2022] - Public disclosure
[-] CVE Reference:

The Common Vulnerabilities and Exposures project (cve.mitre.org)
has assigned the name CVE-2021-26600 to this vulnerability.
[-] Credits:

Vulnerability discovered by Egidio Romano.
[-] Other References:

https://hackerone.com/reports/1081986
[-] Original Advisory:

http://karmainsecurity.com/KIS-2022-01


Source:packetstormsecurity.com