Links32
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 13 / 80
processhacker/processhacker: A free, powerful, multi-purpose tool that helps you monitor system resources, debug software and detect malware. https://github.com/processhacker/processhacker
Thu Apr 30 10:06:18 2020 archive.org
thumbnail

Logo
Process Hacker

A free, powerful, multi-purpose tool that helps you monitor system resources, debug software and detect malware.

Official Website
Nightly Builds

System requirements

Windows 7 or higher, 32-bit or 64-bit.
Features

A detailed overview of system activity with highlighting.
Graphs and statistics allow you quickly to track down resource hogs and runaway processes.
Can't edit or delete a file? Discover which processes are using that file.
See what programs have active network connections, and close them if necessary.
Get real-time information on disk access.
View detailed stack traces with kernel-mode, WOW64 and .NET support.
Go beyond services.msc: create, edit and control services.
Small, portable and no installation required.
100% Free Software (GPL v3)
windows tools proccess hacker malware system
Defensive BASH programming - Say what? http://kfirlavi.herokuapp.com/blog/2012/11/14/defensive-bash-programming/
Wed Apr 29 16:29:38 2020 archive.org

Defensive BASH Programming

Nov 14th, 2012 | Comments

Here is my Katas for creating BASH programs that work. Nothing is new here, but from my experience pepole like to abuse BASH, forget computer science and create a Big ball of mud from their programs.
Here I provide methods to defend your programs from braking, and keep the code tidy and clean.
Immutable global variables

Try to keep globals to minimum
UPPER_CASE naming
readonly decleration
Use globals to replace cryptic $0, $1, etc.
Globals I allways use in my programs:
bash programming aide tipsn defensive
Bash Strict Mode http://redsymbol.net/articles/unofficial-bash-strict-mode/
Wed Apr 29 16:06:06 2020 archive.org

Use Bash Strict Mode (Unless You Love Debugging)

Let's start with the punchline. Your bash scripts will be more robust, reliable and maintainable if you start them like this:

#!/bin/bash
set -euo pipefail
IFS=$'\n\t'
bash debug tips info
40 Free HTML landing page templates - DEV Community 👩‍💻👨‍💻 https://dev.to/davidepacilio/40-free-html-landing-page-templates-3gfp
Wed Apr 29 10:37:38 2020 archive.org
thumbnail

40 Free HTML landing page templates

html template free
Git History - browserify.js https://github.githistory.xyz/babel/babel/blob/master/packages/babel-core/test/browserify.js
Sat Apr 25 21:23:27 2020 archive.org

Show with nice page history

github web online history
GitHub Status https://www.githubstatus.com/
Thu Apr 23 15:20:54 2020 archive.org

Past Incidents
Apr 23, 2020
Incident on 2020-04-22 23:59 UTC
Resolved - This incident has been resolved.
Apr 23, 00:30 UTC
Update - We have deployed a fix and are monitoring recovery.
Apr 23, 00:09 UTC
Investigating - We are investigating elevated errors starting GitHub Actions workflows.
Apr 22, 23:59 UTC

github issue down
fzf: comment optimiser son utilisation de la ligne de commande – Simon Désaulniers https://sim590.github.io/fr/outils/fzf/
Tue Apr 21 09:21:44 2020 archive.org
thumbnail

fzf: comment optimiser son utilisation de la ligne de commande

DEBIAN TERMINAL FZF SHELL
Portsentry : Sécurisez votre serveur Linux contre les tentatives d'intrusion ! - Geeek.org https://www.geeek.org/portsentry-linux-securite/
Mon Apr 20 21:08:22 2020 archive.org
thumbnail

Portsentry : Sécurisez votre serveur Linux contre les tentatives d'intrusion !
par Ludovic Toinel il y a 6 jours
3 min de lecture

secu debian portsentry
The Bash Hackers Wiki [Bash Hackers Wiki] https://wiki.bash-hackers.org/start
Mon Apr 20 17:41:15 2020 archive.org

The Bash Hackers Wiki

wiki hacker shell help bash terminal
Is BGP safe yet? · Cloudflare https://isbgpsafeyet.com/
Mon Apr 20 10:21:28 2020 archive.org
thumbnail

Is BGP safe yet? No.

Border Gateway Protocol (BGP) is the postal service of the Internet. It’s responsible for looking at all of the available paths that data could travel and picking the best route.

Unfortunately, it isn’t secure, and there have been some major Internet disruptions as a result. But fortunately there is a way to make it secure.

ISPs and other major Internet players (Comcast, Sprint, Verizon, and others) would need to implement a certification system, called RPKI.

bgp test secu isp
‎Apple Music https://music.apple.com/fr/browse
Fri Apr 17 16:14:15 2020 archive.org
thumbnail

apple music

apple music
Breaking Bad Typo Generator | https://breakingbad.echosystem.fr https://breakingbad.echosystem.fr/
Fri Apr 17 15:29:39 2020 archive.org

https://breakingbad.echosystem.fr/breaking-bad.png

breaking bad logo

  • BREAKING BAD GeneratoR -

https://breakingbad.echosystem.fr/

breakingbad tool font
Your IP info https://ip.echosystem.fr/
Fri Apr 17 15:29:10 2020 archive.org

Your IP info

https://ip.echosystem.fr/Info/image.php

ip info
hls.js demo https://hls-js.netlify.app/demo/
Fri Apr 17 14:40:54 2020 archive.org

demo v0.13.2
API docs | usage guide

Test your HLS streams in all supported browsers (Chrome/Firefox/IE11/Edge/Safari).

Advanced controls are available at the bottom of this page.

api doc stream
Terminal Escape Injection - InfosecMatter https://www.infosecmatter.com/terminal-escape-injection/
Fri Apr 17 14:38:02 2020 archive.org
thumbnail

Shell script escape injection

  echo -e '#!/bin/sh\n\necho "evil!"\nexit 0\n\033[2Aecho "Hello World!"\n' > script.sh
 chmod a+x script.sh

The resulting script.sh will then work on (has been tested on):

 Linux (gnome-terminal, xterm, aterm)
 Mac OS (Terminal 2.0, iTerm2)
 Cygwin (Windows)

Python script escape injection

     echo -e '#!/usr/bin/python\n\nprint "evil!";\nexit(0);\n#\033[2A\033[1Dprint "Hello World!";\n' > script.py
   chmod a+x script.py

The resulting script.py will then work on (has been tested on):

Linux (gnome-terminal, xterm, aterm)
Mac OS (Terminal 2.0, iTerm2)
Cygwin (Windows)

Batch (Command Prompt) escape injection

     echo -e '@echo off\n\r\n\recho evil!\r\n::\033[2D  \033[A\033[2Decho Hello World!' > script.bat

The resulting script.bat will then work on (has been tested on):

Windows 10 PowerShell
Windows 10 Command Prompt

PS1 (PowerShell) escape injection

      echo -e 'write-host "evil!"\r\n#\033[A\033[2Dwrite-host "Hello World!"' > script.ps1

The resulting script.ps1 will then work on (has been tested on):

Windows 10 PowerShell
Windows 10 Command Prompt

Conclusion

As we have seen in this article, terminal escape injections affect practically every modern operating system environment and they can be really nasty.

As infosec professionals, we should know about them and keep our guards up when it matters. Hopefully this article provided enough information to stay safe.

Please feel free to let us know in the comment section your thoughts.

secu injection terminal shell
Hubble Birthday https://imagine.gsfc.nasa.gov/hst_bday/
Thu Apr 16 15:09:25 2020 archive.org

Select Your Birth Date

nasa birhtday space univers
CREUSTEL (@creustel) • Photos et vidéos Instagram https://www.instagram.com/creustel/
Tue Apr 14 23:01:19 2020 archive.org

CREUSTEL
🦠 Plus belle la vie de confiné ! 😷
📺 Doublages et bêtises pour passer le temps.
👫 Ecrit et doublé par @marioncreusvaux.insta et @julienpestel.

instagram creustel fun
Script Hook V - AB Software Development http://www.dev-c.com/gtav/scripthookv/
Tue Apr 14 18:23:43 2020 archive.org

GAME = GTAV

Download http://www.dev-c.com/files/ScriptHookV_1.0.1868.1.zip

lastest version for GTAV

GTAV GTA script-hook
Invidious - alternative Youtube https://www.invidio.us/
Sun Apr 12 03:17:29 2020 archive.org

Invidious
Popular
Trending
Subscriptions
Playlists

youtube youtube-alternative invidio.us
bash:tip_colors_and_formatting - FLOZz' MISC https://misc.flogisoft.com/bash/tip_colors_and_formatting
Fri Apr 10 16:41:54 2020 archive.org

Bash tips: Colors and formatting (ANSI/VT100 Control sequences)

The ANSI/VT100 terminals and terminal emulators are not just able to display black and white text ; they can display colors and formatted texts thanks to escape sequences.

Those sequences are composed of the Escape character (often represented by “^[” or “<Esc>”) followed by some other characters: “<Esc>[FormatCodem”.

In Bash, the <Esc> character can be obtained with the following syntaxes:

\e
\033
\x1B

Examples:
Code (Bash) Preview

    echo -e "\e[31mHello World\e[0m"

Hello World

    echo -e "\033[31mHello\e[0m World"

Hello World

NOTE¹: The -e option of the echo command enable the parsing of the escape sequences.

NOTE²: The “\e[0m” sequence removes all attributes (formatting and colors). It can be a good idea to add it at the end of each colored text. ;)

NOTE³: The examples in this page are in Bash but the ANSI/VT100 escape sequences can be used in every programming languages.

bash tips formatage color
page 13 / 80
1598 links, including 7 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn