Coding Expert
3.56K subscribers
119 photos
8 videos
37 links
Hello Friends, On This Telegram Channel You Will Get Useful Content Related To Web Development And Programming.

🤖 Telegram Bot
@CodingExpertBot

❤️ YouTube Channel
https://youtube.com/@codingexpert142

💌 DM For Promotions @lalitjangra142
Download Telegram
Channel created
👋 Hello everyone,

🥺 As many of you know, our previous channel "Coding Expert" faced a copyright issue and had to be taken down. But we're back with a new channel, and we need your support more than ever. Please continue to follow us here, and help us grow this community with the same enthusiasm and love you've shown before. Your support is crucial in making this new journey a success!

😢 I miss our 6.5K family, but I believe together we can create an even stronger community.💔

🔗 Channel Link: https://t.me/codingexpert146

🫶 Thank you for being with us,
Coding Expert Team
Please open Telegram to view this post
VIEW IN TELEGRAM
14🗿8👍77❤‍🔥2
✌️ 25 Javascript Path Files Used To Store Sensitive Information In Web Application:-

1️⃣ /js/config.js
2️⃣ /js/credentials.js
3️⃣ /js/secrets.js
4️⃣ /js/keys.js
5️⃣ /js/password.js
6️⃣ /js/api_keys.js
7️⃣/js/auth_tokens.js
8️⃣/js/access_tokens.js
9️⃣/js/sessions.js



1️⃣ /js/authorization.js
2️⃣ /js/encryption.js
3️⃣ /js/certificates.js
4️⃣ /js/ssl_keys.js
5️⃣ /js/passphrases.js
6️⃣ /js/policies.js
7️⃣ /js/permissions.js
8️⃣ /js/privileges.js
9️⃣ /js/hashes.js



1️⃣ /js/salts.js
2️⃣ /js/nonces.js
3️⃣ js/signatures.js
4️⃣ js/digests.js
5️⃣ js/tokens.js
6️⃣ js/cookies.js
7️⃣ /js/topsecr3tdonotlook.js

❤️ Join For More: https://t.me/addlist/EW4Scs9nLG5iMzE1
Please open Telegram to view this post
VIEW IN TELEGRAM
97👍5🔥1
🤔 How To Hide Secret Text Inside An Image Using Python?

😏 Nothing complicated, you just need the Stegano library:

# pip install stegano

from stegano import lsb
secret = lsb.hide('image.png', 'very secret text')
secret.save('secret_image.png')

print(lsb.reveal('secret_image.png'))


❤️ Join For More: https://t.me/addlist/EW4Scs9nLG5iMzE1
Please open Telegram to view this post
VIEW IN TELEGRAM
10🗿6👍2
🐍 Remove The Background Of An Image Using Python

# pip install rembg pillow

from rembg import remove
from PIL import Image

input_path = "in.png"
output_path = "out.png"

input = Image.open(input_path)
output = remove(input)
output.save(output_path)


❤️Join For More: https://t.me/addlist/EW4Scs9nLG5iMzE1
Please open Telegram to view this post
VIEW IN TELEGRAM
10👍63