This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function checkAndResumeVideo() { | |
const videoElement = document.querySelector('video'); | |
if (videoElement) { | |
if (videoElement.paused) { | |
await new Promise(resolve => setTimeout(resolve, 15000));//apne hisaab se time change karlo | |
videoElement.play(); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Question: Tell us about a cybersecurity project or task you've worked on, highlighting any aspects that involved AI or ML. | |
Answer: I've worked on two cybersecurity projects: | |
RAT Testing: Testing various Remote Access Trojans (RATs) on different platforms and analyzing their code for features and vulnerabilities. | |
Emotion Detection using AI: Developing a machine learning model for emotion detection from facial expressions with over 90% accuracy. | |
Question: Describe a cybersecurity challenge you faced and how you addressed it. How did this experience contribute to your understanding of the field? | |
Answer: I participated in the IIT Roorkee CTF event and creatively gained root access to a Linux system. This taught me the importance of creativity, understanding system mechanics, and tools/techniques. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hashlib | |
import time | |
# Get 100 input strings | |
inputs = [] | |
print("Enter 100 input strings:") | |
for i in range(100): | |
inputs.append(input()) | |
# Hash each input using MD5 and concatenate the results |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
filename="flag_999.tar.gz" | |
while [[ -f $filename ]] | |
do | |
tar -xzf "$filename" | |
rm "$filename" | |
filename=$(ls | grep ".tar.gz" | tail -1) | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Microsoft Login</title> | |
</head> | |
<body> | |
<!-- css start --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
████████████████████████████████████ | |
██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██ | |
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██ | |
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██ | |
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██ | |
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██ | |
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██ | |
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██ | |
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██ | |
██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Parallels Business Activation Key | |
6YDASE-890T7S-E5YFS6-54F6YW-4780JY | |
390349-032409-342340-932902-390693 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://discord.com/invite/2aAtEQQgNb | |
Demon Slayer: Kimetsu no Yaiba the Movie: Mugen Train 1080p English Subbed | |
Drive Link 1 - | |
https://drive.google.com/file/d/1gZQFHixUmlNfdY9Y-SSFgFAu9mRkSHZ1/view?usp=sharing | |
Drive Link 2 - | |
https://drive.google.com/file/d/16I80cAgcPTgfaOPwAwuUZGWN3gn4V72t/view?usp=sharing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Opening with 'WITH' method | |
with open('boi.txt','w') as f: | |
#Write mode can create file | |
#As long as code is written in this block | |
#There is no need to Close File | |
#File will be automatically closed for | |
#code out of this block. | |
f.writelines(['This Function\n', | |
'Takes Argument or Input\n', |
NewerOlder