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

@Hacking_Video
@Hacking_attack
Download Telegram
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
[hardware] Can I just short these wifi antenas to neuter my tv decoder?

Hi, I have this TV decoder that my ISP/tv-provider gave me, and which we must forcibly use to see cable. It creates a wifi network on it's own, with a default name (which includes my ISP's name) and probably resets to a default password. I want to neuter it, since I have configured it to turn the network off, but it just keeps turning it on on its' own and I don't want watch for vulnerabilities on that network, since I can't configure it that much and uses WPS too.

Here's how the wifi connectors look which is pretty standart

I don't want to damage it or mod it more than I can fix in order to return it later if we move or change ISP. I could simply remove the antenas and be done, but I'm afraid it might notify the ISP, log errors that when I ask for support they'll notice, or prompt an error or whatever.

What I want to do (but I'm open to suggestions) is shorting the antenna connector. I measured the antennas' resistance but it seems is lower than 0.2 ohms and it actually has full continuity. Is this ok? would there be a problem long term or something?

Thanks in advance.

submitted by /u/pinchitony
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
Bypass User Account Control (UAC) to gain elevated (Administrator) privileges to run any program at a high integrity level. 
Requirements
Administrator account UAC notification level set to default or lower
How it works
ByeIntegrity hijacks a DLL located in the Native Image Cache (NIC). The NIC is used by the .NET Framework to store optimized .NET Assemblies (https://www.kitploit.com/search/label/Assemblies) that have been generated from programs like Ngen, the .NET Framework Native Image Generator. Because Ngen is usually run under the current user with Administrative privileges through the Task Scheduler, the NIC grants modify access for members of the Administrators group. The Microsoft (https://www.kitploit.com/search/label/Microsoft) Management (https://www.kitploit.com/search/label/Management) Console (https://www.kitploit.com/search/label/Console) (MMC) Windows Firewall (https://www.kitploit.com/search/label/Firewall) Snap-in uses the .NET Framework, and upon initializing it, modules from the NIC are loaded into the MMC process. The MMC executable uses AutoElevate, a mechanism Windows uses that automatically elevates a process’s token without UAC prompting. ByeIntegrity hijacks a specific DLL located in the NIC named Accessibility.ni.dll. It writes some shellcode into an appropriately-sized area of padding located in the .text section of the DLL. The entry point of the DLL is then updated to point to the shellcode. Upon DLL load, the entry point (which is actually the shellcode) is executed. The shellcode calculates the address of kernel32!CreateProcessW, creates a new instance of cmd.exe running as an Administrator, and then simply returns TRUE. This is only for the DLL_PROCESS_ATTACH reason; all other reasons will immediately return TRUE.
UACMe
This attack is implemented in UACMe as method #63. If you want to try out this attack, please, use UACMe first. The attack is the same, however, UACMe uses a different method to modify the NIC. ByeIntegrity uses IFileOperation while UACMe uses ISecurityEditor. In addition, UACMe chooses the correct Accessibility.ni.dll for your system and preforms the system maintenance tasks if necessary (to generate the NIC components). ByeIntegrity simply chooses the first NIC entry that exists (which may/may not be the correct entry that MMC is using) and does not run the system maintenance tasks. ByeIntegrity contains significantly more code than UACMe, so reading the UACMe implementation will be much easier to understand than reading the ByeIntegrity code. Lastly, ByeIntegrity launches a child process during the attack whereas UACMe does not. tl;dr: UACMe is simpler and more effective than ByeIntegrity, so use UACMe first.
Using the code
If you’re reading this then you probably know how to compile the source. Just note that this hasn’t been tested or designed with x86 in mind at all, and it probably won’t work on x86 anyways. Just like UACMe, I will never upload compiled binaries to this repo. There are always people who want the world to crash and burn, and I'm not going to provide an easy route for them to run this on somebody else's computer and cause intentional damage. I also don't want script-kiddies to use this attack without understanding what it does and the damage it can cause.
Supported Versions
This attack works from Windows 7 (7600) up until the latest version of Windows 10.

Download Byeintegrity-Uac (https://github.com/AzAgarampur/byeintegrity-uac)

___________________________
@hacking_Attack
@Hacking_Video
Hacking Articles Tips Tricks Videos Tutorials
GIF
KitPloit - PenTest Tools!
ByeIntegrity-UAC - Bypass UAC By Hijacking A DLL Located In The Native Image Cache

https://1.bp.blogspot.com/-ul6nQMxjEE8/YJgZrfaJTCI/AAAAAAAAWH8/ph3XBkphgAkqi5C2QAspk1s4e9juYjuzwCNcBGAsYHQ/w640-h356/byeintegrity-uac_1_example.gif Bypass User Account Control (UAC) to gain elevated (Administrator) privileges to run any program at a high integrity level. Requirements* Administrator account
* UAC notification level set to default or lower How it worksByeIntegrity hijacks a DLL located in the Native Image Cache (NIC). The NIC is used by the .NET Framework to store optimized .NET Assemblies that have been generated from programs like Ngen, the .NET Framework Native Image Generator. Because Ngen is usually run under the current user with Administrative privileges through the Task Scheduler, the NIC grants modify access for members of the Administrators group.

The Microsoft Management Console (MMC) Windows Firewall Snap-in uses the .NET Framework, and upon initializing it, modules from the NIC are loaded into the MMC process. The MMC executable uses AutoElevate, a mechanism Windows uses that automatically elevates a process’s token without UAC prompting.

ByeIntegrity hijacks a specific DLL located in the NIC named Accessibility.ni.dll. It writes some shellcode into an appropriately-sized area of padding located in the .textsection of the DLL. The entry point of the DLL is then updated to point to the shellcode. Upon DLL load, the entry point (which is actually the shellcode) is executed. The shellcode calculates the address of kernel32!CreateProcessW, creates a new instance of cmd.exerunning as an Administrator, and then simply returns TRUE. This is only for the DLL_PROCESS_ATTACHreason; all other reasons will immediately return TRUE. UACMeThis attack is implemented in UACMe as method #63. If you want to try out this attack, please, use UACMe first. The attack is the same, however, UACMe uses a different method to modify the NIC. ByeIntegrity uses IFileOperationwhile UACMe uses ISecurityEditor. In addition, UACMe chooses the correct Accessibility.ni.dllfor your system and preforms the system maintenance tasks if necessary (to generate the NIC components). ByeIntegrity simply chooses the first NIC entry that exists (which may/may not be the correct entry that MMC is using) and does not run the system maintenance tasks. ByeIntegrity contains significantly more code than UACMe, so reading the UACMe implementation will be much easier to understand than reading the ByeIntegrity code. Lastly, ByeIntegrity launches a child process during the attack whereas UACMe does not.

tl;dr: UACMe is simpler and more effective than ByeIntegrity, so use UACMe first. Using the codeIf you’re reading this then you probably know how to compile the source. Just note that this hasn’t been tested or designed with x86 in mind at all, and it probably won’t work on x86 anyways.

Just like UACMe, I will never upload compiled binaries to this repo. There are always people who want the world to crash and burn, and I'm not going to provide an easy route for them to run this on somebody else's computer and cause intentional damage. I also don't want script-kiddies to use this attack without understanding what it does and the damage it can cause. Supported VersionsThis attack works from Windows 7 (7600) up until the latest version of Windows 10. Download Byeintegrity-Uac
hacking: security in practice
Ps4 Ban Exploit

So, in the German com there was going around an exploit, making you able to ban other people, cracking their accounts even with 2FA, lot of big streamer got banned. This was fixed but one guy I know still can do it somehow. I'm not into the community anymore but was wondering, if he said the truth, that he is one of the only 10 people that know the exploit or if he trash talked. Maybe someone here could help me how it is possible for him to ban whoever he wants and also unban who he wants. Thanks in advance

submitted by /u/ExBooMt
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Friends cell phone hacked

How is this possible? Someone is able to text me from my friends # as if they are my friend. Somehow they hijacked his phone and able to text his contacts.

How can he stop this? He said he reset his phone and even changed his iPhone to a new number but they Hacked it again.

submitted by /u/wallywizard55
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Buffer Overflows

Anyone else struggling to understand buffer overflows? I understand the basic concepts, but digging into the details of identifying bad characters, etc has me lost. Any reference points are appreciated.

submitted by /u/Snova526
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video
hacking: security in practice
Can I trick Icue to use my non corsair keyboard?

I'm not sure if this is the right place to post, but I'm wondering if I can get a corsair keyboards software(?) to run on my non corsair keyboard either by virtualizing the keyboard or moding my keyboard(Aukey gaming keyboard).

Anything helps because I'm clearly a noob when I comes to this type of thing.

submitted by /u/poopandapanda
[link] [comments]

___________________________
@hacking_Attack
@Hacking_Video