Category: Crypto Points: 200 Description:
Can you break RSA? https://dl.dropbox.com/s/xqkoamfvas1rdb7/rsaha-fe50cf1bcae41e8ec6eeebccf3f0de7c.py http://ctf.tw/rsaha-fe50cf1bcae41e8ec6eeebccf3f0de7c.py >
Category: Crypto Points: 200 Description:
Can you break RSA? https://dl.dropbox.com/s/xqkoamfvas1rdb7/rsaha-fe50cf1bcae41e8ec6eeebccf3f0de7c.py http://ctf.tw/rsaha-fe50cf1bcae41e8ec6eeebccf3f0de7c.py >
# add in your .bashrc | |
# http://henrik.nyh.se/2008/12/git-dirty-prompt | |
# http://www.simplisticcomplexity.com/2008/03/13/show-your-git-branch-name-in-your-prompt/ | |
# http://blog.cyberion.net/2009/01/improved-bash-prompt-for-git-usage.html | |
# username@Machine ~/dev/dir[master]$ # clean working directory | |
# username@Machine ~/dev/dir[master⚡]$ # dirty working directory | |
# | |
# I've made the following ajustements: | |
# - Use of plumbing, that should be faster than git status porcelain. | |
# - Don't show my repo as dirty if it has files unknown from the index (I always have). |
#!/bin/bash | |
# owtf is an OWASP+PTES-focused try to unite great tools and facilitate pen testing | |
# Copyright (c) 2014, Abraham Aranguren <[email protected]> Twitter: @7a_ http://7-a.org | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: | |
# * Redistributions of source code must retain the above copyright | |
# notice, this list of conditions and the following disclaimer. | |
# * Redistributions in binary form must reproduce the above copyright |
#!/bin/bash | |
# i3lock blurred screen inspired by /u/patopop007 and the blog post | |
# http://plankenau.com/blog/post-10/gaussianlock | |
# Timings are on an Intel i7-2630QM @ 2.00GHz | |
# Dependencies: | |
# imagemagick | |
# i3lock |
Step 18 : RUN /bin/bash owtf/scripts/owtfinstall.sh | |
[+] PostgreSQL server is not running. | |
[+] Can I start db server for you? [Y/n] | |
Starting PostgreSQL 9.1 database server: | |
main | |
Removed stale pid file. The PostgreSQL server failed to start. Please check the log output: 2015-05-28 07:30:08 UTC LOG: database system was interrupted; last known up at 2015-05-28 07:20:16 UTC 2015-05-28 07:30:08 UTC LOG: incomplete startup packet 2015-05-28 07:30:08 UTC FATAL: could not open file "/etc/ssl/certs/ssl-cert-snakeoil.pem": Permission denied 2015-05-28 07:30:08 UTC LOG: startup process (PID 82) exited with exit code 1 2015-05-28 07:30:08 UTC LOG: aborting startup due to startup process failure ... | |
failed! | |
failed! | |
[+] Postgres running on : | |
[+] OWTF db config points towards 127.0.0.1:5432 |
##"DevOops & How I Hacked You"##
Ken Johnson @cktricky
Chris Gates @carnal0wnage
Devops Days Washington DC 12 June 2015
func EncodeStreamingVideo(streamingFile io.Reader, request ShouldCanceler) (*os.File, error) { | |
outputFilename := generateFilename("mp4") | |
// Actually start the command. | |
cmd := exec.Command("ffmpeg", | |
// Read input from stdin. | |
"-i", "-", | |
// ... environment-specific ffmpeg options ... | |
"-y", outputFilename) |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
String file contents |
function check_for_virtual_env { | |
[ -d .git ] || git rev-parse --git-dir &> /dev/null | |
if [ $? == 0 ]; then | |
local ENV_NAME=`basename \`pwd\`` | |
if [ "${VIRTUAL_ENV##*/}" != $ENV_NAME ] && [ -e $WORKON_HOME/$ENV_NAME/bin/activate ]; then | |
workon $ENV_NAME && export CD_VIRTUAL_ENV=$ENV_NAME | |
fi | |
elif [ $CD_VIRTUAL_ENV ]; then |