Skip to content

Instantly share code, notes, and snippets.

View KevinOfNeu's full-sized avatar
🍊
I create things

♫♨ ฏ๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎๎ KevinOfNeu

🍊
I create things
View GitHub Profile
@KevinOfNeu
KevinOfNeu / Activate Office 2019 for macOS VoL.md
Created June 3, 2020 12:42 — forked from zthxxx/Activate Office 2019 for macOS VoL.md
crack activate office on mac with license file

Activate MS Office 2019/2016 for macOS - Microsoft_Office_2019_VL_Serializer

Office 2019 above

2019-06-03

Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.

Ref

@KevinOfNeu
KevinOfNeu / xcode-clang-vers
Created November 9, 2018 06:45 — forked from yamaya/xcode-clang-vers
Xcode clang version record
# Xcode 4.3.3
Apple clang version 3.1 (tags/Apple/clang-318.0.61) (based on LLVM 3.1svn)
Target: x86_64-apple-darwin11.4.0
Thread model: posix
# Xcode 4.3.2
Apple clang version 3.1 (tags/Apple/clang-318.0.58) (based on LLVM 3.1svn)
Target: x86_64-apple-darwin11.4.0
Thread model: posix

WannaCry|WannaDecrypt0r NSA-Cybereweapon-Powered Ransomware Worm

  • Virus Name: WannaCrypt, WannaCry, WanaCrypt0r, WCrypt, WCRY
  • Vector: All Windows versions before Windows 10 are vulnerable if not patched for MS-17-010. It uses EternalBlue MS17-010 to propagate.

SECURITY BULLETIN AND UPDATES HERE: https://technet.microsoft.com/en-us/library/security/ms17-010.aspx

Malware samples

@KevinOfNeu
KevinOfNeu / MaxHeightListViews.java
Created June 17, 2016 10:10
MaxHeightListViews
public class MaxHeightListViews extends ListView {
int maxHeight;
public MaxHeightListViews(Context context) {
super(context);
setViewHeight();
}
public MaxHeightListViews(Context context, AttributeSet attrs) {
super(context, attrs);
@KevinOfNeu
KevinOfNeu / build.gradle
Created May 31, 2016 14:00 — forked from gabrielemariotti/build.gradle
Use signing.properties file which controls which keystore to use to sign the APK with gradle.
android {
signingConfigs {
release
}
buildTypes {
release {
signingConfig signingConfigs.release
}
@KevinOfNeu
KevinOfNeu / ReactNativeExample.jsx
Created April 6, 2016 07:29 — forked from TheSeamau5/ReactNativeExample.jsx
React Native Example Reddit Client
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
'use strict';
var React = require("react-native");
var {
AppRegistry,
@KevinOfNeu
KevinOfNeu / extractGifs.py
Created January 19, 2016 02:46 — forked from revolunet/extractGifs.py
extract frames from animated gif using python+PIL
import os
from PIL import Image
def extractFrames(inGif, outFolder):
frame = Image.open(inGif)
nframes = 0
while frame:
frame.save( '%s/%s-%s.gif' % (outFolder, os.path.basename(inGif), nframes ) , 'GIF')
nframes += 1
#!/usr/bin/python
# Filename s5.py
# Python Dynamic Socks5 Proxy
# Usage: python s5.py 1080
# Background Run: nohup python s5.py 1080 &
# Email: [email protected]
import socket, sys, select, SocketServer, struct, time
class ThreadingTCPServer(SocketServer.ThreadingMixIn, SocketServer.TCPServer): pass
@KevinOfNeu
KevinOfNeu / index.html
Created July 8, 2015 06:47
tiny require and examples!
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
this funny!
</body>
<script>
function require(p){
@KevinOfNeu
KevinOfNeu / MainActivity.java
Created May 12, 2015 11:42
cordova platfrom's MainActivity.java file for debugging webview remotely.
import android.os.Bundle;
import android.os.Build;
import org.apache.cordova.*;
import android.webkit.WebView;
public class MainActivity extends CordovaActivity
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);