Posts

Showing posts from 2022

TryHackMe: Neighbour

Image
 Enter the Machine IP in your Firefox browser and hit enter. TryHackMe: Neighbour you found this page, you have not credentials, but below the "Login" is the hint (CTRL+U), Press CTRL+U. You will find credentials.  TryHackMe: Neighbour Enter credentials, now you are logged in. TryHackMe: Neighbour Look at the "user" parameter, its value is changeable. TryHackMe: Neighbour Change value from "guest" to "admin". Your flag is here. TryHackMe: Neighbour   Happy Hacking......😈😈😈

CSL Search writeup

Image
  Here is our challenge..      If we see in challenge MAC Address is given. and we need to tell the name of manufacturar.  Now go to google and search reverse mac address search Open first link and enter mac and click on 'Search'. now scroll down , your able to see Manufacturar name which is Apple -----Link----- Linkedin  

screen mirroring | screen mirror in kali linux using android scrcpy (without installing any mirroring app).

Image
Concepts: scrcpy scrcpy is a free and open-source screen mirroring application that allows control of an Android device from a Windows, macOS, or Linux desktop computer. The software is currently developed by Genymobile, which also developed Genymotion, an Android emulator.  Communication between the Android device and the computer is primarily performed via a  USB  connection and  Android Debug Bridg e  (ADB). The software functions by executing a server on the Android device, then communicating with the server via a socket over an ADB tunnel . ADB Android Debug Bridge (adb) is a versatile command-line tool that lets you communicate with a device. The adb command facilitates a variety of device actions, such as installing and debugging apps, and it provides access to a Unix shell that you can use to run a variety of commands on a device. It is a client-server program that includes three components: A client , which sends commands. The client runs on your develo...

how to create symbolic link in linux. | create symlink | Access any tool from anywhere in Linux distro (kali).

Image
What is symlink (symbolic link)...?   A symlink is also known as symbolic link or Soft Link. It is a shortcut for an absolute or   relative path to a directory or file, as you use shortcuts in windows.  symlink  points to   actual file in linux file system. How to identify symlink in linux..? create symlink                              In red underline 'l' represents link (symlink).  green underline represents symlink  and  blue underline represents actual file, from which the symlink created. Let's create symlink :   Firstly, we created a python file, which takes input and display on screen. You use any text editor to create it, I used 'nano'  create symlink   Now test it, give execution permission to file for which you want to create symlink, using (chmod +x simple.py (after giving permission file colour will change.)) and then run it.   ...