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
2) Such a powerful brings the complexity of installation and support. In fact, installation and maintenance has become the subject of many recent articles. However, the recent package Linux has been greatly simplified The installation process is provided and more convenient management tools are provided. The following facts also help: Unlike Windows NT, which is a newer system, Unix has been around for decades, so well-trained Unix system personnel greatly exceed Windows NT.

3) The traditional technical support market for large installations of large companies in a workstation environment has now moved to Unix applications that support small business environments.

4) Because developing software on Unix is โ€‹โ€‹so difficult, many young and enthusiastic software Linux developers and enthusiasts have been turned to cheap development platform. These people are an excellent source of knowledge management system, and you get them for free advice from newsgroups.

5) Like other as Unix, Linux has not been in the family in the past It is widely used in Linux. Many applications developed for Unix are available in Linux. These applications are generally in the field of scientific computing, and the quality of the program reflects this. Unfortunately, Linux lacks applications for general computer users.

6) Therefore, Although Linux can serve as an excellent server and an excellent workstation, it can run the latest free graphics environment-X Windows, but it cannot run the latest Office 97 (although many Windows programs can be used in Caldera's WABI window simulator or Wine window simulator ). There are now several software companies (and others) who develop and sell user programs to fill this gap.

๐Ÿฆ‘ Don't worry about so much, let's do it first and then talk!

1) Linux requires very little initial cost, but is strong enough to easily support a home or small business network. It is particularly commendable because of retirement The old computer can be effectively used as a server for a small network.


2) The local Linux user group and computer store provide excellent support. The support from the Internet is also excellent. You get an e-mail from a Linux software developer to confirm your expenditure The bug has been fixed, think about how wonderful this feeling is.


----------------------------------- ---------------------------------------------

๐Ÿฆ‘ Comfigure for Future

1) In many ways, the emergence and growth of Linux comes from the growth of the Internet and Linus Torvalds and many hard-working The efforts of developers.

2) Now, Linux is an incredibly low-cost yet super powerful system. Integrating the development of the latest software and hardware Work is still going on quickly. Although the future of the Internet, personal computers and network computers is still unknown, Linux seems to have a place in the future.

WRITTEN BY UNDERCODE
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
๐Ÿฆ‘ FULL NETWORK CONFIGURATION FOR WIN AND LINUX
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ Two very detailed shell examples
Examples
T.me/undercodeTesting

๐Ÿฆ‘ ๐•ƒ๐”ผ๐•‹๐•Š ๐•Š๐•‹๐”ธโ„๐•‹ :

1) General programming steps

ใ€€ใ€€Now let's discuss the general steps of writing a script. Any good script should have help and input parameters. And writing a pseudo script (framework.sh), which contains the framework structure that most scripts need, is a very good idea. At this time, when writing a new script, we only need to execute the copy command:

> cp framework.sh myscript

2) Then insert your own function.

ใ€€3) Let us look at two more examples:

ใ€€ใ€€Binary to decimal conversion

4) ใ€€ใ€€The script b2d converts binary numbers (such as 1101) into corresponding decimal numbers. This is also an example of performing mathematical operations with the expr command:


#!/bin/sh
# vim: set sw=4 ts=4 et:
help()
{
ใ€€cat < b2h -- convert binary to decimal

๐Ÿฆ‘ USAGE: b2h [-h] binarynum

1) OPTIONS: -h help text

EXAMPLE: b2h 111010
will return 58
HELP
ใ€€exit 0
}

error()
{
ใ€€ใ€€# print an error and exit
ใ€€ใ€€echo "$1"
ใ€€ใ€€exit 1
}

lastchar()
{
ใ€€ใ€€# return the last character of a string in $rval
ใ€€ใ€€if [ -z "$1" ]; then
ใ€€ใ€€ใ€€ใ€€# empty string
ใ€€ใ€€ใ€€ใ€€rval=""
ใ€€ใ€€ใ€€ใ€€return
ใ€€ใ€€fi
ใ€€ใ€€# wc puts some space behind the output this is why we need sed:
ใ€€ใ€€numofchar=echo -n "$1" | wc -c | sed 's/ //g'
ใ€€ใ€€# now cut out the last char
ใ€€ใ€€rval=echo -n "$1" | cut -b $numofchar
}

chop()
{
ใ€€ใ€€# remove the last character in string and return it in $rval
ใ€€ใ€€if [ -z "$1" ]; then
ใ€€ใ€€ใ€€ใ€€# empty string
ใ€€ใ€€ใ€€ใ€€rval=""
ใ€€ใ€€ใ€€ใ€€return
ใ€€ใ€€fi
ใ€€ใ€€# wc puts some space behind the output this is why we need sed:
ใ€€ใ€€numofchar=echo -n "$1" | wc -c | sed 's/ //g'
ใ€€ใ€€if [ "$numofchar" = "1" ]; then
ใ€€ใ€€ใ€€ใ€€# only one char in string
ใ€€ใ€€ใ€€ใ€€rval=""
ใ€€ใ€€ใ€€ใ€€return
ใ€€ใ€€fi
ใ€€ใ€€numofcharminus1=expr $numofchar "-" 1
ใ€€ใ€€# now cut all but the last char:
ใ€€ใ€€rval=echo -n "$1" | cut -b 0-${numofcharminus1}
}


while [ -n "$1" ]; do
case $1 in
ใ€€ใ€€-h) help;shift 1;; # function help is called
ใ€€ใ€€--) shift;break;; # end of options
ใ€€ใ€€-*) error "error: no such option $1. -h for help";;
ใ€€ใ€€*) break;;
esac
done

# The main program
sum=0
weight=1
# one arg must be given:
[ -z "$1" ] && help
binnum="$1"
binnumorig="$1"

while [ -n "$binnum" ]; do
ใ€€ใ€€lastchar "$binnum"
ใ€€ใ€€if [ "$rval" = "1" ]; then
ใ€€ใ€€ใ€€ใ€€sum=expr "$weight" "+" "$sum"
ใ€€ใ€€fi
ใ€€ใ€€# remove the last position in $binnum
ใ€€ใ€€chop "$binnum"
ใ€€ใ€€binnum="$rval"
ใ€€ใ€€weight=expr "$weight" "*" 2
done

echo "binary $binnumorig is decimal $sum"
#

2) ใ€€ใ€€The algorithm used by the script is to use decimal and binary weights (1,2,4,8,16, ..), for example, the binary "10" can be converted to decimal like this:

0 * 1 + 1 * 2 = 2


3) ใ€€ใ€€In order to get a single binary number we used the lastchar function. This function uses wc -c to count the number of characters, and then uses the cut command to extract the last character. The function of the Chop function is to remove the last character.

4)File cycle program

ใ€€ใ€€Perhaps you are one of the people who want to save all outgoing mail to a file, but after a few months, the file may become so large that it will slow down the access to the file. The following script rotatefile can solve this problem. This script can rename the mail save file (assuming outmail) to outmail.1, and for outmail.1 it becomes outmail.2 and so on ...


#!/bin/sh
# vim: set sw=4 ts=4 et:
ver="0.1"
help()
{
ใ€€ใ€€cat < rotatefile -- rotate the file name

๐Ÿฆ‘ USAGE: rotatefile [-h] filename

OPTIONS: -h help text

1) EXAMPLE: rotatefile out
This will e.g rename out.2 to out.3, out.1 to out.2, out to out.1
and create an empty out-file

The max number is 10

version $ ver
HELP
ใ€€ใ€€exit 0
}

error()
{
ใ€€ใ€€echo "$1"
ใ€€ใ€€exit 1
}
while [ -n "$1" ]; do
case $1 in
ใ€€ใ€€-h) help;shift 1;;
ใ€€ใ€€--) break;;
ใ€€ใ€€-*) echo "error: no such option $1. -h for help";exit 1;;
ใ€€ใ€€*) break;;
esac
done
# input check:
if [ -z "$1" ] ; then
error "ERROR: you must specify a file, use -h for help"
fi
filen="$1"
# rename any .1 , .2 etc file:
for n in 9 8 7 6 5 4 3 2 1; do
ใ€€ใ€€if [ -f "$filen.$n" ]; then
ใ€€ใ€€ใ€€ใ€€p=expr $n + 1
ใ€€ใ€€ใ€€ใ€€echo "mv $filen.$n $filen.$p"
ใ€€ใ€€ใ€€ใ€€mv $filen.$n $filen.$p
ใ€€ใ€€fi
done
# rename the original file:
if [ -f "$filen" ]; then
ใ€€ใ€€echo "mv $filen $filen.1"
ใ€€ใ€€mv $filen $filen.1
fi
echo touch $filen
touch $filen

ใ€€2) ใ€€How does this script work? After detecting that the user provided a file name, we perform a 9 to 1 loop. File 9 is named 10, file 8 is renamed 9 and so on. After the loop is completed, we name the original file as file 1 and create an empty file with the same name as the original file.

3) debugging

ใ€€4) ใ€€The simplest debugging command is of course the echo command. You can use echo to print any variable value wherever you suspect an error. This is why most shell programmers spend 80% of their time debugging programs. The advantage of the shell program is that it does not need to be recompiled, and it does not take much time to insert an echo command.

4) ใ€€ใ€€The shell also has a real debugging mode. If there is an error in the script "strangescript", you can debug it like this:

sh -x strangescript


6) ใ€€ใ€€This will execute the script and display the values โ€‹โ€‹of all variables.

ใ€€ใ€€The shell also has a mode to check the grammar without executing a script. Can be used like this:

sh -n your_script


7) This will return all syntax errors.

ใ€€ใ€€We hope you can start writing your own shell script now, and hope you have fun.

WRITTEN BY UNDERCODE
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
This media is not supported in your browser
VIEW IN TELEGRAM
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ How to install phpmyadmin under Linux?

1) When installing fedora, select the basic components that should be selected, including Appache, mysql, and php, but when we manage the database, it is still more convenient to have a graphical interface, so we install phpmyadmin ourselves , The installation is very simple.

2) phpMyAdmin is a MySQL management tool that manages MySQL directly from the web.

3) Assuming your web (webpage storage) root directory is / var / www / assuming your host web access is like this http://192.168.1.11/

4) You can install it to / var / www / phpmyadmin or of course any subordinate directory of / var / www /

5) Note that the name of this directory is best known only to the administrator. Therefore, we assume / var / www / onlyyouknow

6)A. First go to the official website of phpMyAdmin to download the latest phpMyAdmin program

๐Ÿฆ‘ http://superb-east.dl.sourceforge.net/sourceforge/phpmyadmin/phpMyAdmin-2.11.3-all-languages.tar.gz

1) Download phpMyAdmin-2.11.3-all-languages.tar.bz2 to / var / www /

#cd / var / www /

#wget http://superb-east.dl.sourceforge.net/sourceforge/phpmyadmin/phpMyAdmin-2.11.3-all-languages.tar.gz

Of course, you can also go to your own windows machine, and la2ter upload it to the web server after editing it

2) Unzip this file

# tar zxvf phpMyAdmin-2.11.3-all-languages.tar.gz

At this time the path /var/www/phpMyAdmin-2.11.3-all-languages

3) Change the directory name to / var / www / onlyyoukown

# mv /var/www/phpMyAdmin-2.11.3-all-languages / var / www / onlyyoukown

๐Ÿฆ‘D. Modify the configuration file

1) Find the /libraries/config.default.php file (copy config.default.php to the phpmyadmin directory, and then rename it to config.inc.php), the file has the following items (2-8) must be configured by yourself Wordpad (do not use Notepad, this is UTF8 encoding) for editing, directly edit with vim under linux.

2) Find $ cfg ['PmaAbsoluteUri'] and change it to the phpMyAdmin URL that you will upload to the space

For example: $ cfg ['PmaAbsoluteUri'] = 'http://192.168.1.11/onlyyouknow/';

3) Find $ cfg ['Servers'] [$ i] ['host'] = 'localhost'; (usually use the default, there are exceptions, you can not modify)

4) Find $ cfg ['Servers'] [$ i] ['auth_type'] = 'config';

Use config for debugging in your own machine; if you use cookies in the space on the network, since we have added the URL in the front, we will modify it to a cookie. Here we recommend using cookies.

5) Find $ cfg ['Servers'] [$ i] ['user'] = 'root'; // MySQL user (mysql user name, use root in your machine;)

6) Find $ cfg ['Servers'] [$ i] ['password'] = ''; // MySQL password (mysql user's password, his server is generally the password of the mysql user root)

7) Find $ cfg ['Servers'] [$ i] ['only_db'] = ''; // If set to a db-name, only (set it if you only have one data; if you are on this machine or want to Set up the server, it is recommended to leave it blank)

8) Find $ cfg ['DefaultLang'] = 'zh'; (Here is the choice of language, zh stands for Simplified Chinese, I do nโ€™t know whether to fill in gbk or not)

9) Save after setting

If "The configuration file now requires the top secret phrase password (blowfish_secret)", please set the cookie of your website in the equal sign of $ cfg ['blowfish_secret'] = ''; for example: $ cfg ['blowfish_secret'] = ' Any character '; This is because of your "$ cfg [' Servers'] [$ i] ['auth_type'] = 'cookie'.

๐Ÿฆ‘ Test

1) Open the browser, http://192.168.1.11/onlyyoukown/

A little personal opinion

2) We think that it is not a very safe way to control mysql through the root user of mysql from the web. So my suggestion is that if it is your own server, you can put the phpadmin directory into a directory that the web cannot access when you run out. Use it to move the entire directory back to its original location with the mv command.

WRITTEN BY UNDERCODE
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ AMAZON PRIME ACCOUNTS-
tested from wiki



549388012554xxxx

22/04

cvv: rnd

IP: la suya (o Amazon bloquea la cuenta)

1) En vivo | 5493880125547461 | 04 | 2024 | 560

2) En vivo | 5493880125540011 | 04 | 2024 | 822

3) En vivo | 5493880125545440 | 04 | 2024 | 672

4) En vivo | 5493880125548352 | 04 | 2024 | 627

5) En vivo | 5493880125548527 | 04 | 2024 | 744

6) En vivo | 5493880125540672 | 04 | 2024 | 522

@UNDERCODETesting
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘LEARN PHP :SUMMARY OF ESCAPE characters :
fb.com/undercodeTesting

๐Ÿฆ‘ ๐•ƒ๐”ผ๐•‹๐•Š ๐•Š๐•‹๐”ธโ„๐•‹ :

1) A summary of escape characters In writing bbs recently, I encountered a problem with transcoding. It took a long time to find a more complete solution, which can completely restore the original text of the author.
Posted below for your correction.
System: linux + php4 + oracle8i


2) <?
// --- title, name and other fields into the library processing (remove the leading and trailing spaces)
function trans_string_trim ($ str) {
$ str = trim ($ str);
$ str = eregi_replace ("'" , "''", $ str);
$ str = stripslashes ($ str);
return $ str;
}

3) // --- article storage processing, namely textarea field;
function trans_string ($ str) {
$ str = eregi_replace (" '","' '", $ str);
$ str = stripslashes ($ str);
return $ str;
}

// --- displayed from the library in the form; in text to trans conversion, in textarea, no Conversion, display directly

//-display on WEB page, filter HTML code; including link address
function trans ($ string) {
$ string = htmlspecialchars ($ string);
$ string = ereg_replace (chr (10), "

$ string = ereg_replace (chr (32), "", $ string);
return $ string;
}

4) // --- displayed on the WEB page without filtering HTML code;
function trans_web ($ string) {
$ string = ereg_replace (chr ( 10), "
", $ string);
$ string = ereg_replace (chr (32), "", $ string);
return $ string;
}


5) // --- displayed on the WEB page, filter HTML code and head and tail spaces, mainly Used to display the user nickname
function trans_trim ($ string) {
$ string = trim ($ string);
$ string = htmlspecialchars ($ string);
$ string = ereg_replace (chr (10), "
", $ string);
$ string = ereg_replace (chr (32), "", $ string);
return $ string;
}

6) // --- displayed in span;
function trans_span ($ string) {
$ string = ereg_replace (chr (10), "\ n", $ string);
$ string = ereg_replace (chr (32), "", $ string);
$ string = ereg_replace ('"'," "", $ string);
return $ string;
}

7) // --- display cookies on WEB, filter html
function trans_cookie ($ str) {
$ str = trans ($ str);
$ str = stripslashes ($ str);
$ str = eregi_replace ("" "," '", $ str);
return $ str;
}
? >
---------------------------

8) Finally, by the way, if you want to display a paragraph in the article in the span, use substr to take fixed-length characters When stringing, remember to add a space after the span parameter

WRITTEN BY UNDERCODE
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ Bin Spotify Premium :

BIN = 510458xxxxx44xx1

IP = Argentina

Country = Honduras

If you don't understand, use Argentine IP and when paying change to Honduras

โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ Network filtering-restore the default settings of iptables :
t.me/undercodeTesting

๐Ÿฆ‘ ๐•ƒ๐”ผ๐•‹๐•Š ๐•Š๐•‹๐”ธโ„๐•‹ :

Simple steps :

1) /usr/local/sbin/iptables -P INPUT ACCEPT
/usr/local/sbin/iptables -P FORWARD ACCEPT
/usr/local/sbin/iptables -P OUTPUT ACCEPT


2) reset the default policies in the nat table.

/usr/local/sbin/iptables -t nat -P PREROUTING ACCEPT
/usr/local/sbin/iptables -t nat -P POSTROUTING ACCEPT
/usr/local/sbin/iptables -t nat -P OUTPUT ACCEPT


3) # flush all the rules in the filter and nat tables.

/usr/local/sbin/iptables -F
/usr/local/sbin/iptables -t nat -F


4) erase all chains that's not default in filter and nat table.

/usr/local/sbin/iptables -X
/usr/local/sbin/iptables -t nat -X'

Written by Undercode
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ XWindow configuration full by undErcode :
t.me/undercodeTesting

๐Ÿฆ‘ ๐•ƒ๐”ผ๐•‹๐•Š ๐•Š๐•‹๐”ธโ„๐•‹ :

1) This document describes how to obtain , Install, configure (configure) XFree86 of linux system . XFree86 is an enhanced version of Windows x 11r5, mainly in all kinds of support to intel i386 / 486 hard
unix system body platform, of course, this also includes the linux. It currently supports a considerable number of video hardware, and it also
fixes many mit Standard x windows bugs.

2) The purpose of this document is an attempt to help Linux users how to install and set configuration version of XFree86 2.0, a further
aim is to answer some questions about the use of x and program design.
Please after reading this document and related files, and then start the installation and start xfree86, so can avoid small
possible hardware damage caused by heart.

3) To see the complete file about xfree86, please refer to the directory under / usr / X386 / lib / X11 / etc
/ usr / X386 / man. Other important files and directories will also be mentioned in this description.

4) In addition, this file is not a complete set of XFree86, but we will provide relevant information
, the main file please refer to: xf86-doc-2.0.tar.gz.
Other manpages about X11R5 are in: xf86-man-2.0.tar.gz. To see these manpages, you
can use groff -man ***. Man | more or directly set MANPATH to this directory, and then use the
man command directly .

๐Ÿฆ‘ Content:

0 ) Introduction-What are X11R5 and XFree86?

1) Supported hardware

2) Where can I get XFree86, and what do I need to run?

3) Configure XFree86

4) tinyX-a package for systems with low memory
5)X-related software
6) use to compile X programs
7) x of programming
8) information on the Internet to find the X

๐Ÿฆ‘ Appendix: Some questions and answers
0.5 Introduction - What is the X11R5 and XFree86?
X11R5 is for unix Windows system of the system. x mit Consortium window is raised, and there are
free of copyright, it allows any of the original program is used, as long as the original copyright considerations included into the
go to.
Because x is the unix system to do business standard Windows system, so there is a considerable number of applications using the x window
which contains free and commercial version of the body.
XFree86 is also a branch of X11R5, mainly supporting several Intel-based unix and unix-
like operating systems. XFree86 server portion derived from x386 1.2 edition (which is made public in conjunction with x11r5
shi x server), but most of the newly developed xfree86. From then xfree86-1.3, the most important
change is to accelerate the server, this is a completely new. This version has many new features, efficiency improvements
and some bug improvements.

1. Supported hardware
This is a frequently asked question, do first in this simple explanation. The current version 2.0
supports the following hardware on the XF86_SVGA server:
Non-acceleration cards:
Tseng ET3000, ET4000AX, ET4000 / W32
Western Digital / Paradise PVGA1
Western Digital WD90C00, WD90C10, WD90C11, WD90C30
Genoa GVGA
Trident TVGA8800CS, TVGA8900B, TVGA8900C , TVGA8900CL, TVGA9000
ATI 28800-4, 28800-5, 28800-a
NCR 77C22, 77C22E
Cirrus Logic GLGD5420, CLGD5422, CLGD5424, CLGD6205, CLGD6215,
CLGD6225, CLGD6235
Compaq AVGA (cf the question in the appendix)
OAK OTI067, OTI077
accelerator card:
Cirrus CLGD5426 , CLGD5428
Western Digital WD90C31
NOTE WD90C33 does not work on XFree86-2.0.

๐Ÿฆ‘ These cards support 256 colors (XF86_SVGA) and in monochrome mode (XF86_Mono) except
ATI and Cirrus cards (these two cards only support 256 colors). In addition, ET4000 / W32
only has functions like ET4000, and acceleration functions are not supported.
2) Usually monochrome server also supports VGA card (using an image memory 64k), Hercules card
and Hyundai HGC-1280 card. But these drivers are not in the XF86_Mono server
in.

3) So if you want to use these, you must use LinkKit to reconfigure your XF86_Mono
server. The appendix mentions how to construct the Hercules mono card.

4) There is an experimental server called the hardware for general VGA card: XF86_VGA16 is a
16-color server.

๐Ÿฆ‘ XFree86-2.0 has different servers and supports the following hardware:

1) S3 86C911, 86C924, 86C801, 86C805, 86C928 supported by
the XF86_S3 server
ATI mach8 supported by the XF86_Mach8 server
ATI mach32 supported by the XF86_Mach32 server
IBM 8514 / a and true clones supported by the XF86_8514 server, no
other hardware is supported, such as Weitek P9000, TIGA, IIT AGX,
Microfield, the new MGA, etc .. None are supported. In future versions,
we will support these hard bodies. However, TIGA and Microfield like will not be supported, because
the problem with copyright files.

Be in / usr / X386 / lib X11 under / / etc directory README file for instructions variety of card
has a description of the various options and settings.

2) Where can I get XFree86, and what do I need to do to run it?
This section is mainly for Linux executable software.
The executable XFree86-2.0 for Linux can be obtained from ftp to the following places:
tsx-11.mit.edu:/pub/linux/packages/X11/XFree86-2.0
or
sunsite.unc.edu:/pub/Linux/X11/XFree86 -2.0


3) This software is tarfiles compressed with gzip.
XF86_8514.tar.gz Server for
IBM8514 card XF86_Mach32.tar.gz Server for Mach32 card
XF86_Mach8.tar.gz Server for Mach8 card XF86_Mono.tar.gz Server for
monochrome card
XF86_S3.tar.gz device
server XF86_SVGA.tar.gz SVGA card
XF86_VGA16.tar.gz 16 vga card server
xf86-svr-2.0.tar.gz Server for all the above cards
xf86-bin-2.0.tar.gz Some common user programs
xf86-cfg-2.0.tar.gz XDM configuration files and
chooser xf86-fnt-2.0 tar.gz fonts (all of them)
xf86-kit-2.0.tar.gz Linkkit for building X servers
xf86-lib-2.0.tar.gz Dynamic libraries, bitmaps and minimal fonts
xf86-man-2.0.tar .gz Manual pages (both client + programmer)
xf86-pex-2.0.tar.gz PEX libraries and sample clients
xf86-prg-2.0.tar.gz Static libs, dynamic stubs, configs and
include files
xf86-doc-2.0.tar .gz Documentation and release notes for XFree86 2.0
xf86-doc2-2.0.tar.gz This file contains the manpage for Xconfig that
has mistakenly been left out of the -doc- file. In
addition, libc 4.4.1 or later is required to run Free86-2.0. People with accelerated version of the server
you need at least Linux version or update 0.99pl13.
Other servers such as SVGA, VGA16 and Mono require Linux 0.99pl12 or newer.

4) And you must install install David Engel \ s shared dynamic linker ld.so
1.3 or newer, which can be found in the following places:
mirrors of tsx-11 in the / pub / linux / packages / GCC directory.
Memory requirements It is at least 8 MB and virtual memory 16 MB (SWAP file). In fact, if you carefully
manage the use of memory, 4 MB can also run. Our recommendation is to have at least 8 MB of memory,
because the swap method will really hurt performance.

5) If you want to run a memory- intensive program, such as gcc; then you should have at least 16 MB of memory and
16MB of swap. If you
do not install LinkKit, you must have at least 17 MB of disk space. If it is complete, you need 21 MB.

6) If you remove other servers you don't need, you should be able to save a few MB. Detailed disk

7) For requirements, please refer to the description of Simon Cooper in the 00README file.

8) Before installation, please back up the files you have changed in case you need them from time to time.

> Please handle as root in the / directory)
permission right you should use umask 022.
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ If I want to compile XWINDOWS myself, what should I do?


1) you should use Link Kit, because it will be much simpler.
To add SVGA server driver, you need Link Kit.
You can find the Link Kit in the directory / usr / X386 / lib / Server / VGADriverDoc.

2) Starting with version 2.0, Configuring XFree86 , all XFree86 files are put together. Use tar to combine them into one file:
xf86-doc-2.0.tar.gz. You must first obtain this file and read these files Only then

3) The correct configuration of XFree86. Some of the steps beneath, is related to the introduction of some of these documents:
README.Config This file can be said is a brief description of the configuration of XFree86 home, look at this file, and in accordance with
its instructions step by step.

4) Next, you must use the man command to check the Xconfig, XFree86 and related server instructions
(the possible servers are XF86_SVGA, XF86_Mono, XF86_VGA16
, XF86_S3 , XF86_Mach8 , XF86_Mach32 or XF86_8514). Just look at the first section of the manpage (man 1 xconfig)

5) If you can not determine what kind of video card, you can use the program to check SuperProbe
check your video card categories. However, if you have a manual video card, of course, it is based on the instructions manual you to
do.

6) It should be noted that SuperProbe may not be able to correctly check the type of video card. Of course, in this case, the
XFree86 server is difficult to operate correctly. And the card types that SuperProbe can check are more than the
number of types supported by XFree86 server.

7) There are some images that can be functioning at XFree86-2.0 version AccelCards this document is an
accelerator card. See if your card is listed. Of course, there are some cards may not be one of them, but
it also can function properly.

8) If you are using XS3, then you should see README.XS3, because it was to join XS3 server
when there are some changes slightly.

9) Several people have pointed out that some XFree86 configuration problems can be solved by changing the shadowing BIOS
settings and cacheable area. Since these methods, there are some contradictions; so I will only
mention some of the problems may be BIOS settings will appear. If you have a problem, or not mentioned by the bottom
to find the answer file, then of course, the problem may not be a problem bios settings.

๐Ÿฆ‘ You will need the following information during configuration:
Screen specifications (such as horizontal and vertical frequencies, bandwidth, etc ...), this is the most important thing.

1) The name of the card. Some companies will use \ "s3 \" as a synonym for \ "accelerated \".

2) How much image memory is provided by your card.

3) Your card available dot-clocks are those, or directly to a programmable
This is the most difficult part of the set. There is a description in README.config about how to get this information.
NOTE: The WD90C3x card will have problems during clock probing.
Please use the XFree86-1.3 server to execute the measured clocks and record them in the

4) Xconfig file, then you can run the 2.0 version of the server.
NOTE: If your RAMDAC processing pixel clocks higher than 110MHz, then
it may be recent high-end RAMDACs because these are using special way.
Will be possible, these RAMDACs should not be higher than 85 MHz in the Clock Run

5) The next version should support these hardware. If you are with the current model, with a high speed
operation of your RAMDAC, you'll ruin it. If you have such hardware, please use
a speed not higher than 85MHz.

6) The protocol used by the mouse and the connected device. There are listed in the manpage in Xconfig
available mouse agreements. Below are some device names for mouse connection:
7) / dev / atibm ATI XL busmouse (NOTE: ATI GU busmouse is
actually logitech busmouse)
/ dev / logibm for the Logitech busmouse (NOTE: this uses the
busmouse protocol, NOT the Logitech protocol)
/ dev / inportbm for the microsoft busmouse
/ dev / psaux for a ps / 2 or quickport mouse

๐Ÿฆ‘ NOTE: The names listed above are the new names. Perhaps the old names are still used in the old versions.
new old major minor device number
atibm: bmouseatixl 10 3
logibm: bmouselogitec 10 0
inportbm: bmousems 10 2
psaux: bmouseps2 or ps2aux 10 1

๐Ÿฆ‘ Other mice belong to serial mouse, so they are also connected to some serial ports
like / dev / ttyS ? Or / dev / ttyS ??.

1) busmouse not always easy to see that a device is connected, that is, to determine if
all the drivers into the kernel, a message appears when you turn and look in the boot
, it will tell you it is detected that the busmouse which type. At this point you will know, it

2) Is connected to that device.
Now look at the README.Config file. If your screen is not in the modeDB.txt file,

3) you should choose a general mode. And make sure that the specifications of the selected mode are among your screen specifications.
If you want to adjust or change a mode, please read VideoModes.doc and follow the instructions to
set it.

4) WARNING: Other people's Xconfig files may not be suitable for you, because each person's hardware device is different.
In particular screen mode setting, be sure to determine the specifications of all of your screen, to avoid having
the hardware to be damaged.
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ Configuring the keyboard for non-US-layout Xwindows manager
twitter.com/undercodeNews

๐Ÿฆ‘ ๐•ƒ๐”ผ๐•‹๐•Š ๐•Š๐•‹๐”ธโ„๐•‹ :

1) If you do not change the original standard settings, the server will automatically activate the US-american keyboard mode

2) If you want different settings, please see the manpage description of xmodmap.

3) In sunsite.unc.edu:/pub/Linux/X11/misc have Xmodmaps Some language keyboard
set instance.

4) There are also several special keys, you can define new correspondence. In Xconfig profile, the complete set advantage
with. Please refer to the XFree86kbd (1) manpage in this regard.

5) tinyX-An x window system based on XFree86, suitable for machines with less ram

6) If your ram is not enough to run XFree86, maybe you can try this stuff.
It is based on XFree86, so the way to configure or set is the same as xfree86.

7) To run tinyX, you must have at least 4 MB RAM and at least 8 MB swap space. The current

8) tinyX there are several versions of the server program to follow instructions on the front of the xfree86-2.0 to choose
select.

๐Ÿฆ‘ The name of the software are as follows:
tinyX-2.0.tar.gz-YYY, YYY the name of the server on behalf of
this software may be made to obtain the nearest station ftp. After obtaining the first set and then untar Xconfig
file, you can also find some of the relevant documents tinyX in the readme directory, the first reading of this file
and then set the Xconfig file.

1) The tinyX file also includes some useful memory saving tips. At least follow some suggestions, you
can also reduce the number of swapping when running tinyX. If you have more than the memory of the implementation
capacity, the system also will be completely locked (in other words, similar

2) to the crash, on most of the situation is only
powered off or press the reset, this is very dangerous), Therefore, before restarting the x
sure to read that file,
because the tinyX does not contain complete XFree86-2.0, it may encounter when performing, it appears
message program does not exist.

WRITTEN BY UNDERCODE
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
๐Ÿฆ‘ FULL XWINDOW MANAGER BY UNDERCODE
This media is not supported in your browser
VIEW IN TELEGRAM
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ San Francisco International Airport confirms that its website was hacked into employee passwords or stolen :
from twitter @undercodeNews :

1) San Francisco International Airport has confirmed that two of its websites were hacked in March, and the attacker appears to have accessed the usernames and passwords of its employees and contractors. The airport confirmed in a notice on April 7 that the two sites SFOConnect.com and SFOConstruction.com were "targets of cyber attacks," and hackers "insert malicious computer code on these two sites to steal Login credentials of some users ". If stolen, these login credentials could allow an attacker to enter the airport's network. It is not known whether there are any additional protective measures, such as multi-factor authentication, to prevent network vulnerabilities.

2 )The notice also added: "Users may be affected by this attack, including those who access these websites from Internet Explorer outside the airport network through personal devices based on Windows operating systems or non-airport maintenance devices.

3) The notice said that the airport took down the employee-specific website on March 23 and issued a notice to force a password reset. Both websites are now up and running.

4) A spokesperson for San Francisco International Airport did not immediately comment.

It is not uncommon for attackers to use existing vulnerabilities to inject code on websites to obtain input data, such as user names and passwords or even credit card information.

5) Two years ago, the credit card records of 380,000 customers on the British Airways website were hacked into malicious code on their websites and mobile applications, resulting in the theft of credit card records of 380,000 customers. The attack resulted in the largest data breach fine in European history-about 230 million US dollars-thanks to the newly released GDPR regulations at the time.
WRITTEN BY UNDERCODE
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ Simple random DNS, HTTP/S internet traffic noise generator Termux-Linux
fb.com/undercodeTesting

1) pip install requests
Usage

2) Clone the repository

> git clone https://github.com/1tayH/noisy.git
Navigate into the noisy directory

3) cd noisy
Run the script

4) python noisy.py --config config.json
The program can accept a number of command line arguments:

$ python noisy.py --help

5) usage: noisy.py [-h] [--log -l] --config -c [--timeout -t]

๐Ÿฆ‘ optional arguments:
-h, --help show this help message and exit
--log -l logging level
--config -c config file
--timeout -t for how long the crawler should be running, in seconds
only the config file argument is required.

๐Ÿฆ‘ Output
$ docker run -it noisy --config config.json --log debug
DEBUG:urllib3.connectionpool:Starting new HTTP connection (1): 4chan.org:80
DEBUG:urllib3.connectionpool:http://4chan.org:80 "GET / HTTP/1.1" 301 None
DEBUG:urllib3.connectionpool:Starting new HTTP connection (1): www.4chan.org:80
DEBUG:urllib3.connectionpool:http://www.4chan.org:80 "GET / HTTP/1.1" 200 None
DEBUG:root:found 92 links

๐Ÿฆ‘Build the image VIA DOCKER :

1) docker build -t noisy .

Or if you'd like to build it for a Raspberry Pi (running Raspbian stretch):

2) docker build -f Dockerfile.pi -t noisy .

3) Create the container and run:

> docker run -it noisy --config config.json

E N J O Y
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘ 2020 Quickly analyze and reverse engineer Android packages
t.me/undercodeTesting

๐Ÿฆ‘ ๐•ƒ๐”ผ๐•‹๐•Š ๐•Š๐•‹๐”ธโ„๐•‹ :

FEATURES :

Device info
Intents
Command execution
SQLite references
Logging references
Content providers
Broadcast recievers
Service references
File references
Crypto references
Hardcoded secrets
URL's
Network connections
SSL references
WebView references

๐Ÿฆ‘ อถUะฏ โ…ƒโ…ƒAT๊™„อถI
Iฬถอ˜ออฬฬŽฬ‚อฬนฬฑอ•ฬฐฬ™ฬ–อ– Nฬธฬฬ”ฬญฬฌฬฌฬ–อ–ฬฐอšฬกอ‡ฬฅSฬตอ‹อฬฬƒอ’ฬ‚ฬฬบฬžฬชTฬดฬ…อ’ฬ‰ฬ† อ†ฬžอ”อ“AฬดอŒอŠฬฝฬ“ฬ‘อŠฬฬงฬ–อ‰อŽฬจฬฌฬ ฬญอ™ฬชLฬถฬ‹อ อ„ฬฬฬŒฬˆอœฬชLฬถฬˆฬ„ฬ‰ฬ•ฬŽฬ’ฬŒอƒฬญอ‰อ”อ–อ•ฬ— ฬดอ อ‚ฬฬฃฬฃฬฃอŽฬ–อ–ฬจ&ฬตอ„อ„ฬอออ—ฬปอœฬงฬจฬฌฬคฬœฬชอ… ฬตฬ”ฬ‹ออ‘ฬŒอ„ฬ„ฬ•ฬˆฬ„ฬฎอšฬžฬฒฬคฬ™Rฬดฬ‹อ„อ‘ฬพฬƒอ† ฬฏฬ™ฬญฬ ฬฃอ•ฬญฬงUฬดอ†ฬšฬ“ฬ‘อ›ฬผฬชอ™Nฬธอ‹อ‹ฬฬ•อ‘อ€ฬผอˆอ…ฬžฬฐอ…ฬ™ฬฆ



1) git clone https://github.com/1N3/ReverseAPK

2) cd RevereAPK

3) ./install

๐Ÿฆ‘To use :

reverse-apk <apk_name>

@UndercodeOfficial
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–