sristisravan
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # ⚔️ Implementation of One-Way Shellcoding in Windows 64bit Systems Introduction --- An interesting aspect of Penetration testing/exploit development is to discover a vulnerable service and exploit the service using the misconfigurations in the system. In a typical scenario exploiting the vulnerability in a real-time service and getting a shell from the server is not a simple task. Lets assume one such a scenario where a vulnerable service is running on a Windows environment that is behind a firewall. ![Scenario Description](https://i.ibb.co/0q1fLSN/Untitled-Diagram.png) <!--https://i.imgur.com/ynsWEyT.png --> The Firewall is configured in such a way that a) It blocks all ports except for port of the vulnerable service (i.e. Connections are allowed only on port 4444 on which is used by vulnerable service) b) It blocks all outgoing connections from the server In this scenario, it won’t be possible to get a shell using traditional payloads. Because the only way to establish a connection with the server is through the port of the vulnerable service. Hence we need to tweak the custom shellcodes such that we can use the existing port of the vulnerable service to obtain a shell from the server. This technique of customising shellcodes is known as one-way shellcoding. We will demonstrate a step-by-step process to construct and execute “Rebind Socket shellcode” which is a type of one-way shellcode. Primer on Windows Memory Management --- All the processes in Operating Systems (OS) use memory, the memory management is dependent on the OS. Processes do not have access to physical memory directly. Processes use virtual addresses which are translated by the CPU to a physical address when accessed. On launching a process in a Win64 environment, only canonical addressess are used by the processes to which virtual addressess are assigned. Typically, in a Win64 environment, the canonical address range from - 0x0000000000000000 to 0x00007FFFFFFFFFFF which are used for userland processes - 0xFFFF0000'00000000 to 0xFFFFFFFF'FFFFFFF which are used for kernel processes. The remaining address are referred as non-canonical addresses. Each time a process calls a function, a stack frame is created. A stack frame stores things like the return address to return to on completion of the function and the instructions to be carried out by the function. Development of the Shellcode for Windows 64bit --- In a Windows 32bit system, when a buffer overflows in the vulnerable application, the EIP register will get loaded with the overwritten return pointer address on the stack. This is not the case with Windows 64bit applications, which will only load canonical addresses into the RIP register. For example, you cannot overflow a buffer with A's and expect to see RIP flooded with 0x41's as 0x4141414141414141 since it is not a canonical address as described earlier. However, we can overwrite the return pointer with a canonical address of some instruction set we would like to execute, and this address will be loaded into RIP and run as normal. We can confirm the application is vulnerable to buffer overflow by sending a payload buffer of 3000 A's to target server and observe the stack in debugger. Python 2.7 with the socket library is used as scripting language for socket communication as shown below. ```python import socket buf="A"*3000 s=socket.socket(socket.AF_INET,socket.SOCK_STREAM) s.connect(("172.16.35.6",4444)) print s.recv(1024) s.send(buf) s.close() ``` Observing the stack at x64dbg we notice that the stack is overwritten with 4141414141414141 as shown in image below, but the RIP is not loaded with our payload buffer as it is a non-canonical address. For further developing the exploit since we know we can override the return address in the current stack we will override return address with our desired address to jump to an address where we can control the stack. ### Determining location of retrun address in the stack We will use `pattern_create` tool in kali linux to create a buffer of known pattern of 3000 bytes and send it as payload to determine exactly at which location the return address is overwritten. The command used to create a buffer is given below ```bash ./usr/share/metasploit-framework/tools/exploit/pattern_create.rb -l 3000 ``` Modifying the above script with the output string from above command and crashing the application. In the x64dbg debugger we notice the bytes `0x` is the location where the return address of the stack is overwritten We will use pattern offset to query the location of the string in our payload buffer. The command used is given below ```bash ./usr/share/metasploit-framework/tools/exploit/pattern_offset.rb -q ``` The location of return address in our current stack is identified as ###### tags: `shellcoding` `exploit-dev` `64bit` `windows`

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully