UNDERCODE COMMUNITY
2.68K subscribers
1.23K photos
31 videos
2.65K files
80.1K 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
Forwarded from UNDERCODE NEWS
Why not use a camera that massively improves the camera capability of the iPhone for device photography?
#Technologies
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘How to set rights to allWEB directories 755 and all files 644:

Let's take a look at this with examples.

1) Recursive change of rights
Change the directory with the cd command to your desired location where you need to assign permissions for all directories to 755 and all files to 644.

cd /home/user/public_html

2) Then use the first chmod 755 command for all directories and subdirectories.

3) The second command will change the permissions for all files to 0644 (chmod 644) in the directory tree.

find . -type d -exec chmod 0755 {} \;
find . -type f -exec chmod 0644 {} \;

4) You can also change the resolution using the xargs command to make it faster:

find . -type d -print0 | xargs -0 chmod 755
find . -type f -print0 | xargs -0 chmod 644

5) The permissions for directory 0755 are similar to "rwxr-xr-x", and the permissions for file 644 are "rw-r - r–".

6) How to change permissions for specific files
Instead of changing the permissions for all files, you can also target specific files with similar extensions.

For example, you have a PHP application installed on your server.

And you don't want to let others run php files.

7) Use the following command to chmod 0640 for all php files:

find . -type f -name "*.php" -exec chmod 0640 {} \;

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
Following SEC lawsuit: 25 percent drop in the cryptocurrency of Ripple.
#Updates
Forwarded from UNDERCODE NEWS
Durov promised to make a partial payment to Telegram.
#Updates
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘CSS COURSES :

- >>>CSS Stats(https://cssstats.com) - Potentially interesting stats on stylesheets.

- >>>CSScomb(https://github.com/csscomb/csscomb.js) - A coding style formatter for CSS. Supports own configurations to make style sheets beautiful and consistent.

- >>>CSSLint(http://csslint.net) - Does basic syntax checking and finds problematic patterns or signs of inefficiency.

- >>>GraphMyCSS.com(https://graphmycss.com) - CSS Specificity Graph Generator.

- >>>Parker(https://github.com/katiefenn/parker) - Stylesheet analysis tool.

- >>>PostCSS(https://postcss.org) - A tool for transforming styles with JS plugins. These plugins can lint your CSS, support variables
and mixins, transpile future CSS syntax, inline images, and more.

- >>>Project Wallace CSS Analyzer(https://www.projectwallace.com) - Analytics for CSS, part of >>>Project Wallace(https://www.projectwallace.com).

- >>>sass-lint(https://github.com/sasstools/sass-lint) :warning: - A Node-only Sass linter for both sass and scss syntax.

- >>>scsslint(https://github.com/brigade/scss-lint) :warning: - Linter for SCSS files.

- >>>Specificity Graph(https://jonassebastianohlsson.com/specificity-graph) - CSS Specificity Graph Generator.

- Stylelint(http://stylelint.io) - Linter for SCSS/CSS files.


ENJOY
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
Sberbank held a majority interest in the biggest online payment gateway operator.
#International
Forwarded from UNDERCODE NEWS
Red Hat supports the option of CentOS and argues that 95% of existing usage scenarios can be handled by the Stream variant.
#Updates
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁


ENJOY THIS FREE Android Clean Architecture Boilerplate :

Languages, libraries and tools used
Kotlin
Android Support Libraries
RxJava2
Dagger 2 (2.11)
Glide
Retrofit
OkHttp
Gson
Timber
Mockito
Espresso
Robolectric

πŸ„»πŸ„΄πŸ…ƒ'πŸ…‚ πŸ…‚πŸ…ƒπŸ„°πŸ…πŸ…ƒ :

This layer makes use of the Android Framework and is used to create all of our UI components to display inside of the Browse Activity. The layer receives its data from the Presentation layer and when retrieved, the received models are mapped using the Bufferoo Mapper so that the model can be mapped to this layer's interpretation of the Bufferoo instance, which is the BufferooViewModel. The Activity makes use of the BrowseContract to enable communication to and from the presenter.

FREE :
https://github.com/bufferapp/android-clean-architecture-boilerplate

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
IQaudio high-quality audio hardware module is welcomed by Raspberry Pi.
#Technologies
Forwarded from UNDERCODE NEWS
Since finding unusual network behavior, TaskRabbit advises users to restore their passwords.
#Malwares
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

ENCRYPT AND DECRYPT MAIL :

1) This is a python tool to encrypt any of your personal message and decrypt the encrpyted message at your own use.


a) DOWNLOAD https://github.com/tre3x/Encrypt-Decrypt-Tool
b) run as python encryptiondecryptioncode.py
c) enjoy hh

Enter your original secret text, and press 1 to convert into some rubbish, encrypted form which none will understand!

When the user tries to encrypt his/her personal text, he is given a secret key and an encrypted text.

2 )Now, when you need you original message, you have to enter your encrypted message, and press 2 for decrypting the encrypted text to your original text.

You have to enter the key provided to you while encrypting for decryption.

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
In order to manufacture electric vehicle components, LG Electronics will form a joint venture with Magna.
#International
Forwarded from UNDERCODE NEWS
Samsung leads Apple, but is it tougher to make money for mobile makers or are they being lazy?
#Technologies
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

A GOOD HACKING COLLECTION :

>>go-tools(https://github.com/dominikh/go-tools) - A collection of tools and libraries for working with Go code, including linters and static analysis

- >>Clean code linters(https://github.com/collections/clean-code-linters) - A collection of linters in github collections

- >>Code Quality Checker Tools For PHP Projects(https://github.com/collections/code-quality-in-php) - A collection of PHP linters in github collections

- >>linters(https://github.com/mcandre/linters) - An introduction to static code analysis

- >>php-static-analysis-tools(https://github.com/exakat/php-static-analysis-tools) - A reviewed list of useful PHP static analysis tools

- >>Tools for C/C++(https://www.peerlyst.com/posts/a-list-of-static-analysis-tools-for-c-c-peerlyst?utm_source=twitter&utm_medium=social&utm_content=peerlyst

_post&utm_campaign=peerlyst_resources) - A list of static analysis tools for C/C++

- >>Wikipedia(http://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis) - A list of tools for static code analysis.


▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
Some people endorse Apple's criticism of FB for fabricating anti-tracking evidence.
#International
Forwarded from UNDERCODE NEWS
NETFLIX: have the panettone packed, here is the list of Christmas TV shows.
#Updates
Forwarded from UNDERCODE NEWS
Intel introduces Maple Ridge, the first independent Thunderbolt 4 control chip.
#Technologies