@mp4_1: اية الكرسى سورة الاخلاص والفلق والناس والكافرون والنصر والنسد وقريش والماعون والكوثر #قران #سعد_الغامدي #quran #قران_كريم

🌿ℚ𝕦𝕣𝕒𝕟 || MP3🌿
🌿ℚ𝕦𝕣𝕒𝕟 || MP3🌿
Open In TikTok:
Region: IQ
Friday 07 August 2026 20:44:25 GMT
39184
4661
48
55

Music

Download

Comments

imen.amouna3712
🩷Imen Amouna🩷 :
ربي اني لما انزلت الي من خير فقير 🤲 ربي هب لي رزقاً يفوق توقعاتي رزقاً يأتيني رغداً من كل مكان رزقاً يتسخر لي من حيث احتسب ومن حيث لاحتسب رزقاً يجعلني في اعظم مناصب الحياة ويجعل اسمي من اوائل اسماء الخلق بالصدقة والعطاء رزقاً مباركاً يتضاعف لي طوال حياتي بحق أسمك الأعظم ياحي ياقيوم🤲
2026-08-07 22:57:38
4
eloratea777wakw10000
👑Ahmad👑 :
استغفرالله العظيم واتوب اليه
2026-08-07 21:37:10
3
user7154023473154
ام صبحي المحمدية :
اللهم صلي على محمد وآل محمد 🌺
2026-08-07 21:34:04
2
user1481705585214
المجهول الدقسي :
صدق الله العظيم
2026-08-07 22:41:14
0
zheelanaedris
Wllaty-Zheelanay :
2026-08-08 00:03:03
0
m.d_957
doudou :
ياربي هب لي رزقا كنهر منهمر لا ينفذ أبدا لا يشقيني و لا يطغيني و لا افقر بعده أبدا، اللهم جبرا يتعجب له أهل السماوات و الارض جبرا يليق بعظمتك عاجلا غير آجلا 🤲 ياربي
2026-08-07 23:26:03
0
duaa6088
Duaa :
اللهم صل على محمد وآل محمد وعجل فرجهم يالله 🤲🏻
2026-08-07 23:51:14
0
sara.razan3
استغفر الله :
اللهم اهدنا فيمن هديت وعافينا فيما عافيت وقنا عذاب النار
2026-08-07 23:39:58
0
hachemghorabehachemghor1
Hachem Ghorabe Hache :
الحمد لله
2026-08-07 23:37:49
0
djamilamaquilleuse
Milashka beauty :
استغفر الله العظيم و اتوب اليه
2026-08-07 23:41:03
0
as_rr26
نگܔ🦋ܔديهہ :
:ربي اني لما انزلت الي من خير فقير 🤲 ربي هب لي رزقاً يفوق توقعاتي رزقاً يأتيني رغداً من كل مكان رزقاً يتسخر لي من حيث احتسب ومن حيث لاحتسب رزقاً يجعلني في اعظم مناصب الحياة ويجعل اسمي من اوائل اسماء الخلق بالصدقة والعطاء رزقاً مباركاً يتضاعف لي طوال حياتي بحق أسمك الأعظم ياحي ياقيوم🤲
2026-08-07 23:26:14
0
fatoumaabdeljawe1
Fatouma abdeljawed :
اللهم صلي وسلم وبارك على سيدنا محمد و على اله وصحبه اجمعين
2026-08-07 23:36:14
0
hassanhadi537
المهيب :
ياالله
2026-08-07 23:58:29
0
dy8powmafnt7
عبدالله علي ابو يونس ⚓️⚓️⚓️⚓️ :
الله اكبر
2026-08-07 21:14:07
0
sara.razan3
استغفر الله :
صلى الله عليه وسلم
2026-08-07 23:40:14
0
fatoumaabdeljawe1
Fatouma abdeljawed :
استغفر الله العظيم واتوب اليه
2026-08-07 23:36:27
0
kenzarabia738
kenza :
لا حول ولا قوة الا بالله العلي العظيم
2026-08-07 22:06:08
0
sanaa.t06
ᦓꪖꪀꪖ :
لا اله إلا الله
2026-08-07 22:10:35
0
halafaour33
Hala fauor :
يارب
2026-08-07 23:47:36
0
11.a_8
أسامة ال الهبوب 🇩🇪 :
سبحان الله وبحمدو سبحان الله العظيم
2026-08-07 22:19:13
0
To see more videos from user @mp4_1, please go to the Tikwm homepage.

Other Videos

✅ CompTIA+ 18.1.9 Lab – Explore SQL Injection Flaws 📌 Lab Purpose This lab teaches you how SQL Injection works, how to exploit unsafe web forms, and which security misconfigurations enable it. You will use a vulnerable website to: Test user login bypass Extract hidden database data Observe insecure coding Recommend mitigations 🧪 PART 1 — Test an Authentication Bypass Using SQL Injection Scenario: You are given a website with a Login form connected to a SQL database. The form is not sanitizing inputs, so SQL injection is possible. Task: Bypass the login page using SQL injection. Expected Input: In the username field, enter: ' OR '1'='1 Leave the password blank. Why this works: The backend query becomes: SELECT * FROM users WHERE username='' OR '1'='1' AND password=''; '1'='1' is always TRUE → login succeeds. 👉 Lab Result: You get logged in without valid credentials. 🧪 PART 2 — Extract Hidden Data Using SQL Injection Scenario: You now access a search box or product filter field that concatenates user input directly into SQL. Task: Retrieve data from the database with a union-based injection. Example injection: ' UNION SELECT username, password FROM users -- The -- comments out the remaining query. Lab Expected Output: You will see a list showing (examples): admin testuser encrypted or plaintext passwords 🧪 PART 3 — Identify SQL Injection Vulnerabilities in Code The lab usually shows you a PHP or ASP.NET snippet similar to: $query = prepare("SELECT * FROM users WHERE username=? AND password=?"); $stmt->execute([$user, $pass]); C#/.NET: cmd.CommandText = "SELECT * FROM users WHERE username=@user AND password=@pass"; cmd.Parameters.AddWithValue("@user", user); cmd.Parameters.AddWithValue("@pass", pass); ✔ Use Input Validation / Whitelisting Reject unexpected characters (', ", --, ;, etc.) ✔ Use Stored Procedures Move SQL logic to the database. ✔ Disable Detailed SQL Errors Show generic “Error occurred,” not SQL error output. ✔ Minimum Privilege Accounts Web app user should not have: DROP table ALTER table INSERT admin users 🧪 PART 5 — Knowledge Check Answers (Typical) Here are the common questions and correct answers from this type of lab. 1. What allowed the SQL injection to succeed? ✔ User input was not sanitized. 2. What SQL technique bypassed the login? ✔ Boolean-based SQL injection (' OR '1'='1) 3. What mitigates SQL injection? (Choose 2 or 3) ✔ Prepared statements ✔ Stored procedures ✔ Input validation 4. Why did UNION SELECT work? ✔ The query returned the same number of columns. 5. Which attack retrieves data from other tables? ✔ Union-based SQL injection #SQLInjection #CyberSecurityLabs #WebSecurity #CompTIAALabs #EthicalHacking" width="135" height="240">
✅ CompTIA+ 18.1.9 Lab – Explore SQL Injection Flaws 📌 Lab Purpose This lab teaches you how SQL Injection works, how to exploit unsafe web forms, and which security misconfigurations enable it. You will use a vulnerable website to: Test user login bypass Extract hidden database data Observe insecure coding Recommend mitigations 🧪 PART 1 — Test an Authentication Bypass Using SQL Injection Scenario: You are given a website with a Login form connected to a SQL database. The form is not sanitizing inputs, so SQL injection is possible. Task: Bypass the login page using SQL injection. Expected Input: In the username field, enter: ' OR '1'='1 Leave the password blank. Why this works: The backend query becomes: SELECT * FROM users WHERE username='' OR '1'='1' AND password=''; '1'='1' is always TRUE → login succeeds. 👉 Lab Result: You get logged in without valid credentials. 🧪 PART 2 — Extract Hidden Data Using SQL Injection Scenario: You now access a search box or product filter field that concatenates user input directly into SQL. Task: Retrieve data from the database with a union-based injection. Example injection: ' UNION SELECT username, password FROM users -- The -- comments out the remaining query. Lab Expected Output: You will see a list showing (examples): admin testuser encrypted or plaintext passwords 🧪 PART 3 — Identify SQL Injection Vulnerabilities in Code The lab usually shows you a PHP or ASP.NET snippet similar to: $query = "SELECT * FROM users WHERE username='" . $_POST['user'] . "' AND password='" . $_POST['pass'] . "'"; 🔎 What’s wrong? No parameterized queries No input validation Direct string concatenation SQL error messages exposed to user 🧪 PART 4 — Recommend Mitigations You must identify the correct secure practices: ✔ Use Prepared Statements / Parameterized Queries Examples: PHP (PDO): $stmt = $db->prepare("SELECT * FROM users WHERE username=? AND password=?"); $stmt->execute([$user, $pass]); C#/.NET: cmd.CommandText = "SELECT * FROM users WHERE username=@user AND password=@pass"; cmd.Parameters.AddWithValue("@user", user); cmd.Parameters.AddWithValue("@pass", pass); ✔ Use Input Validation / Whitelisting Reject unexpected characters (', ", --, ;, etc.) ✔ Use Stored Procedures Move SQL logic to the database. ✔ Disable Detailed SQL Errors Show generic “Error occurred,” not SQL error output. ✔ Minimum Privilege Accounts Web app user should not have: DROP table ALTER table INSERT admin users 🧪 PART 5 — Knowledge Check Answers (Typical) Here are the common questions and correct answers from this type of lab. 1. What allowed the SQL injection to succeed? ✔ User input was not sanitized. 2. What SQL technique bypassed the login? ✔ Boolean-based SQL injection (' OR '1'='1) 3. What mitigates SQL injection? (Choose 2 or 3) ✔ Prepared statements ✔ Stored procedures ✔ Input validation 4. Why did UNION SELECT work? ✔ The query returned the same number of columns. 5. Which attack retrieves data from other tables? ✔ Union-based SQL injection #SQLInjection #CyberSecurityLabs #WebSecurity #CompTIAALabs #EthicalHacking

About