Aims to deobfuscate the result of JavascriptObfuscator free version.
To tun the script, you should have had node.js installed first. Requires node.js and following npm modules:
- esprima
System.Globalization.CultureInfo objCI = new System.Globalization.CultureInfo("En-US"); | |
objCI.DateTimeFormat.ShortDatePattern = "yyyy-MM-dd"; | |
VWGContext.Current.CurrentUICulture = objCI; |
using System.Net; | |
using System.IO; | |
// Upload File to Specified FTP Url with username and password and Upload Directory | |
//if need to upload in sub folders /// | |
//Base FtpUrl of FTP Server | |
//Local Filename to Upload | |
//Username of FTP Server | |
//Password of FTP Server |
var uuid = require('node-uuid'), | |
https = require('https'); | |
function iCloud(appleId, password) { | |
this.urls = { | |
"version" : "https://www.icloud.com/system/version.json", | |
"validate": "/setup/ws/1/validate?clientBuildNumber={0}&clientId={1}", | |
"login": "/setup/ws/1/login?clientBuildNumber={0}&clientId={1}" | |
} |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Windows.Forms; | |
using System.Drawing.Printing; | |
using System.Drawing; | |
namespace TicketingSystem | |
{ | |
public class Ticket |
Aims to deobfuscate the result of JavascriptObfuscator free version.
To tun the script, you should have had node.js installed first. Requires node.js and following npm modules:
/* | |
* Inspired by: http://stackoverflow.com/questions/4360060/video-streaming-with-html-5-via-node-js | |
*/ | |
var http = require('http'), | |
fs = require('fs'), | |
util = require('util'); | |
http.createServer(function (req, res) { | |
var path = 'video.mp4'; |
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers
When the directory structure of your Node.js application (not library!) has some depth, you end up with a lot of annoying relative paths in your require calls like:
var Article = require('../../../models/article');
Those suck for maintenance and they're ugly.
<template> | |
<section> | |
<div id="calendar"></div> | |
</section> | |
</template> | |
<script> | |
// $.fn.fullCalendar = fullCalendar | |
export default { | |
middleware: '', |
/* | |
Reference: http://www.codeproject.com/Articles/20250/Reverse-Connection-Shell | |
*/ | |
using System; | |
using System.Text; | |
using System.IO; | |
using System.Diagnostics; | |
using System.ComponentModel; | |
using System.Linq; |