Skip to content
View Sebiee's full-sized avatar

Highlights

  • Pro

Block or report Sebiee

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. catch-boxes catch-boxes Public

    Project for the IARA discpline for SIC2

    JavaScript 1

  2. ansible-modules-hashivault ansible-modules-hashivault Public

    Forked from TerryHowe/ansible-modules-hashivault

    Ansible module for Hashicorp Vault.

    Python

  3. instant_word_search instant_word_search Public

    Quick utility to search for a word or phrase on multiple websites at once

    JavaScript

  4. TerryHowe/ansible-modules-hashivault TerryHowe/ansible-modules-hashivault Public

    Ansible module for Hashicorp Vault.

    Python 458 157

  5. chreniuc/CTF chreniuc/CTF Public

    Steps to follow when participating to CTF

    JavaScript 1

  6. Bash overwrite file in place, withou... Bash overwrite file in place, without creating a temporary one
    1
    myfile=test.txt &&
    2
    
                  
    3
    # Identify the starting and ending line of the block you want to replace
    4
    replace_this_start=$(grep -n 'STARTLINE_OF_STRING_THAT_NEEDS_REPLACEMENT' \
    5
      ${myfile} | awk -F':' '{ print $1 }') &&