UNDERCODE COMMUNITY
2.67K subscribers
1.23K photos
31 videos
2.65K files
79.9K links
πŸ¦‘ Undercode Cyber World!
@UndercodeCommunity


1️⃣ World first platform which Collect & Analyzes every New hacking method.
+ AI Pratice
@Undercode_Testing

2️⃣ Cyber & Tech NEWS:
@Undercode_News

3️⃣ CVE @Daily_CVE

✨ Web & Services:
β†’ Undercode.help
Download Telegram
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘bEST Wordlist Generator :

> > [Cupp](https://github.com/Mebus/cupp.git)

> >WordlistCreator](https://github.com/Z4nzu/wlcreator)

> >[Goblin WordGenerator](https://github.com/UndeadSec/GoblinWordGenerator.git)

> >[Password list (1.4 Billion Clear Text Password)](https://github.com/Viralmaniar/SMWYG-Show-Me-What-You-Got)

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
In order to demonstrate the initial iPhone production line, Netizens released old images from 2007.
#Technologies
Forwarded from UNDERCODE NEWS
Dridex attackers aim for holiday season and spray fake Amazon gift cards.
#Malwares
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

How to Compile the kernel :

1.
tar -Jxv -f linux**.tar.xz -C /target
cd /target
make help

2. make config || make oldconfig || make allyesconfig || make menuconfig || make xconfig
then it generats a .config file.

3. make -j N
N jobs co-work.

4. # make modules_install or make deb-pkg

5. # make install or dpkg -i xx.deb

*note* that,
menuconfig.dependency : libncurse5, libncurse5-dev
xconfig.dependency : qt4-?

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
Is the web search style in Windows 10 too anti-human? Teaching you how to absolutely shut it down.
#Updates
Forwarded from UNDERCODE NEWS
Python continues to be popular.
#Updates
Forwarded from UNDERCODE NEWS
High-risk Windows vulnerability, Microsoft has actually been neglecting it for a year.
#Vulnerabilities
Forwarded from UNDERCODE NEWS
Intel's sales this year will hit 75 billion US dollars, the highest results in 52 years.
#Technologies
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘Encrypt a disk with cryptsetup

1. prepare the empty disk (sdc)

2. parted sdc
# parted /dev/sdc
> mktable
> mkpart

3. format drive as luks
# cryptsetup luksFormat /dev/sdc1

4. open luks
# cryptsetup luksOpen /dev/sdc1 NAME
(where NAME is a mapped device name,
which will be seen at /dev/mapper/${NAME}
here we assume NAME=luks
)
# ls /dev/mapper/
** luks

5. format volume inside luks
# mkfs.ext4 /dev/mapper/luks
OR
# mkfs.ext4 /dev/dm-0

6. mount this ext4 filesystem
# mount /dev/dm-0 /MOUNT_POINT

7. umount filesystem
# umount /MOUNT_POINT

8. close luks
# cryptsetup luksClose /dev/dm-0



encrypt a disk image with luks
------------------------------

0. create my symlink
# ln -s /sbin/cryptsetup /sbin/luks

1. prepare a blank image file, by using dd or truncate
# truncate -s 1G luks.img

2. setup the image file as loop device
# losetup -f luks.img

3. Format this (virtual) device with luks header
# luks luksFormat /dev/loop0
P.S. input uppercase 'YES', then input your password for key slot 0

4. Open device
# luks open /dev/loop0 luks0
# lsblk
loop0     7:0    0     1G  0 loop  
└─luks0 253:0 0 1022M 0 crypt

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
Fastweb Mobile: the upcoming 5G network will soon be official in Italy.
#International
Forwarded from UNDERCODE NEWS
In 2021, five things to expect for email protection.
#Updates
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

Shells programing and checkers :
>>iCode CNES for Shell(https://github.com/lequal/iCodeCNES) An open source static code analysis tool for Shell and Fortran (77 and 90).

>>kmdr(https://kmdr.sh) CLI tool for learning commands from your terminal. kmdr delivers a break down of commands with every attribute explained.

>>shellcheck(https://www.shellcheck.net) ShellCheck, a static analysis tool that gives warnings and suggestions for bash/sh shell scripts.

>>SwiftFormat(https://github.com/nicklockwood/SwiftFormat) A library and commandline formatting tool for reformatting Swift code.

>>SwiftLint(https://realm.github.io/SwiftLint) A tool to enforce Swift style and conventions.

>>Tailor(https://github.com/sleekbyte/tailor) :warning: A static analysis and lint tool for source code written in Apple's Swift programming language.

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
Apple Music support for Tesla app upgrade hints.
#Updates
Forwarded from UNDERCODE NEWS
One point is decided between Washington and Beijing: the strength of the technological firms is underestimated.
#International
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

4,2 rating free hacking course-- Hacking Academy: How to Monitor & Intercept Transmitted Data:

Learn how to intercept data in networks

Monitor transmitted data

Detect intrusions

See what is going on in your network

Learn how to read and filter data in Wireshark

https://www.udemy.com/course/hacking-academy-monitoring-transmitted-data/
Forwarded from UNDERCODE NEWS
Samsung Galaxy S21: more news arriving in January at the top of the range.
#Technologies
Forwarded from UNDERCODE NEWS
The slim and light cell phone flagship, from "mainstream" to "heterogeneous".
#Technologies