- 最低限求めること
- 趣味への否定がない女性であれば…
- 他人の所有物を勝手に売らない人
- れちせんぱい
- 顔は時折、晒されています: https://twitter.com/ret156
- 男性(未婚)
| // ==UserScript== | |
| // @name Remove UTM and fbclid Parameters | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.3 | |
| // @description Remove UTM and fbclid parameters from URL and navigate to clean URL | |
| // @author hushin | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== |
| use wasm_bindgen::prelude::Closure; | |
| // あとで使う as_unchecked_ref は JsCast によって定義される trait | |
| use wasm_bindgen::{JsCast, JsValue}; | |
| fn main() -> Result<(), JsValue> { | |
| // クリックすると値が増えるだけのカウンタを作る | |
| let window = web_sys::window().unwrap(); | |
| let document = window.document().unwrap(); | |
| let body = document.body().unwrap(); |
| - name: NHK BS1 | |
| type: BS | |
| channel: BS15_0 | |
| serviceId: 101 | |
| - name: BS日テレ | |
| type: BS | |
| channel: BS13_0 | |
| serviceId: 141 | |
| - name: BS朝日 | |
| type: BS |
| package main | |
| import ( | |
| "log" | |
| "os" | |
| gst "github.com/spreadspace/go-gstreamer" | |
| "github.com/ziutek/glib" | |
| ) |
| #!/bin/sh | |
| # https:/github.com/torvalds/linux/blob/master/Documentation/usb/gadget_configfs.txt | |
| # http:/irq5.io/2016/12/22/raspberry-pi-zero-as-multiple-usb-gadgets/ | |
| # 上記2つを参考に同時に二つのガジェットを有効化する。 | |
| # 1. mass storageで、SDカードをUSBメモリとして見せる | |
| # 2. rndisで、USBをetherデバイスとして見せる | |
| # ドライバを依存関係含めてロード | |
| modprobe usb_f_rndis |
| 日時: | 2018-08-05 |
|---|---|
| 作: | 時雨堂 |
| バージョン: | 18.08.0 |
| url: | https://shiguredo.jp/ |
以下の記事の続きです。
https://gist.github.com/masatokinugawa/304d243b6a5142500b9b9efb3fb540c0
今回は、前回の記事に比べると、テクニカルなXSSの解説寄りです。 この知識が多くの人にとってどれほど役に立つかはわかりませんが、攻撃を通すまでのステップが複雑で面白かったので共有したいと思います。
| #include <gst/gst.h> | |
| static gboolean bus_call (G_GNUC_UNUSED GstBus *bus, GstMessage *msg, gpointer data) | |
| { | |
| GMainLoop *loop = (GMainLoop *) data; | |
| switch (GST_MESSAGE_TYPE (msg)) { | |
| case GST_MESSAGE_EOS: | |
| g_print ("End of stream\n"); |
| #!/bin/bash -e | |
| modprobe libcomposite | |
| cd /sys/kernel/config/usb_gadget/ | |
| mkdir g && cd g | |
| echo 0x1d6b > idVendor # Linux Foundation | |
| echo 0x0104 > idProduct # Multifunction Composite Gadget | |
| echo 0x0100 > bcdDevice # v1.0.0 |