Skip to content

Instantly share code, notes, and snippets.

View jpluimers's full-sized avatar

Jeroen Wiert Pluimers jpluimers

  • wiert.me
  • Amsterdam, The Netherlands
View GitHub Profile
@jpluimers
jpluimers / -
Created August 26, 2015 20:39
forums.embarcadero.com:563 NNTP over SSL is still very vulnerable
(B
###########################################################
testssl.sh 2.6rc2 from https://testssl.sh/dev/
(3d6e6a1 2015-08-26 20:06:53 -- 1.359)
This program is free software. Distribution and
modification under GPLv2 permitted.
USAGE w/o ANY WARRANTY. USE IT AT YOUR OWN RISK!
Please file bugs @ https://testssl.sh/bugs/
@jpluimers
jpluimers / darwin-i386-cc.Configure.txt
Created August 26, 2015 20:47
zlib enabled Mac OS X Darwin openssl version for drwetter testssl.sh
Configuring for darwin-i386-cc
no-ec_nistp_64_gcc_128 [default] OPENSSL_NO_EC_NISTP_64_GCC_128 (skip dir)
no-gmp [default] OPENSSL_NO_GMP (skip dir)
no-krb5 [krb5-flavor not specified] OPENSSL_NO_KRB5
no-libunbound [experimental] OPENSSL_NO_LIBUNBOUND (skip dir)
no-sctp [default] OPENSSL_NO_SCTP (skip dir)
no-shared [option]
no-store [experimental] OPENSSL_NO_STORE (skip dir)
no-unit-test [default] OPENSSL_NO_UNIT_TEST (skip dir)
no-zlib-dynamic [option]
@jpluimers
jpluimers / -
Created August 27, 2015 20:33
forums.embarcadero.com:563 NNTP over SSL is still very vulnerable

###########################################################
testssl.sh 2.6rc3 from https://testssl.sh/dev/
(dddb163 2015-08-27 20:39:20 -- 1.361)
This program is free software. Distribution and
modification under GPLv2 permitted.
USAGE w/o ANY WARRANTY. USE IT AT YOUR OWN RISK!
Please file bugs @ https://testssl.sh/bugs/
@jpluimers
jpluimers / -
Created August 27, 2015 20:43
forums.embarcadero.com:563 NNTP over SSL is still very vulnerable
###########################################################
testssl.sh 2.6rc3 from https://testssl.sh/dev/
(dddb163 2015-08-27 20:39:20 -- 1.361)
This program is free software. Distribution and
modification under GPLv2 permitted.
USAGE w/o ANY WARRANTY. USE IT AT YOUR OWN RISK!
Please file bugs @ https://testssl.sh/bugs/
Windows Registry Editor Version 5.00
;http://teamwindows8.com/2013/03/display-windows-8-edition-build-version-on-your-desktop/
[HKEY_CURRENT_USER\Control Panel\Desktop]
"PaintDesktopVersion"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]
"DisplayVersion"=dword:00000001
@jpluimers
jpluimers / Default-Host-Application-error-message.txt
Created February 4, 2014 22:54
When you chose "Default Host Appliction" in a VMware Client by accident
---------------------------
Default Host Application
---------------------------
Make sure the virtual machine's configuration allows the guest to open host applications.
---------------------------
OK
---------------------------
@jpluimers
jpluimers / JavaScriptTimeZone.js
Last active August 29, 2015 13:56
Chrome does not pick up on time zone changes until a new tab is opened or the browser restarted.
/// Google Chrome:
var date = new Date();
// undefined
date;
// Tue Feb 11 2014 07:09:19 GMT-0500 (UTC)
date.toUTCString();
// "Tue, 11 Feb 2014 12:09:19 GMT"
/// WebKit jsc on the console:
@jpluimers
jpluimers / error.txt
Created February 20, 2014 20:02
SourceTree for Windows; error when performing a HgFlow init on a Mercurial repository.
hg flow -y -f init
abort: No module named ConfigParser!
flow: Flow was already initialized for workspace:
Completed with errors, see above.
@jpluimers
jpluimers / list-services.bat
Created February 25, 2014 14:27
List the Windows Services (no need for an Administrative UAC token)
@echo off
:: find all services by SERVICE_NAME, then list STATE, TYPE, DISPLAY_NAME, and "" (this is on the line below STATE)
setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
:: the space in " all" is required by the sc command; see "sc /?" for explanation
:: the ^ in "state^= all" is required as the command interpreter will eat the equals sign, which causes the errors
:: "[SC] EnumQueryServicesStatus OpenService FAILED 1060"
:: "The specified service does not exist as an installed service."
:: see http://blog.smartbear.com/software-quality/managing-windows-services/
@jpluimers
jpluimers / copy-GExperts-2007-HKLM-to-HKCU.bat
Last active August 29, 2015 13:57
Copies the HKLM settings from GExperts 2007 to HKCU.
type NUL > %temp%\GExperts-D2007-HKCU.reg.txt
>> %temp%\GExperts-D2007-HKCU.reg.txt echo Windows Registry Editor Version 5.00
>> %temp%\GExperts-D2007-HKCU.reg.txt echo [HKEY_CURRENT_USER\Software\Borland\BDS\5.0\Experts]
if exist %temp%\GExperts-D2007-HKLM.reg.txt del %temp%\GExperts-D2007-HKLM.reg.txt
reg export HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Borland\BDS\5.0\Experts %temp%\GExperts-D2007-HKLM.reg.txt
type C:\Users\Dames\AppData\Local\Temp\GExperts-D2007-HKLM.reg.txt | find "GExpertsDelphi2007.dll" >> %temp%\GExperts-D2007-HKCU.reg.txt
if exist %temp%\GExperts-D2007-HKLM.reg.txt del %temp%\GExperts-D2007-HKLM.reg.txt
reg export HKEY_LOCAL_MACHINE\SOFTWARE\Borland\BDS\5.0\Experts %temp%\GExperts-D2007-HKLM.reg.txt