All Projects → BlackHole1 → Webrtcxss

BlackHole1 / Webrtcxss

利用XSS入侵内网(Use XSS automation Invade intranet)

Labels

Projects that are alternatives of or similar to Webrtcxss

Opentok Android Sdk Samples
Sample applications illustrating best practices using OpenTok Android SDK.
Stars: ✭ 168 (-11.58%)
Mutual labels:  webrtc
Twilio Contact Center
A contact center built on Twilio, supporting voice calls, web chat, callback, Facebook Messenger and SMS chat
Stars: ✭ 176 (-7.37%)
Mutual labels:  webrtc
Flutter Webrtc
WebRTC plugin for Flutter Mobile/Desktop/Web
Stars: ✭ 2,764 (+1354.74%)
Mutual labels:  webrtc
Ipywebrtc
WebRTC for Jupyter notebook/lab
Stars: ✭ 171 (-10%)
Mutual labels:  webrtc
Webrtc To Sip
Setup for a WEBRTC client and Kamailio server to call SIP clients
Stars: ✭ 173 (-8.95%)
Mutual labels:  webrtc
Webcamera
Camera controls for the Web
Stars: ✭ 182 (-4.21%)
Mutual labels:  webrtc
Rtmp To Webrtc
rtmp to webrtc
Stars: ✭ 168 (-11.58%)
Mutual labels:  webrtc
Video Meeting
Google Meet / Zoom clone in a few lines of code
Stars: ✭ 187 (-1.58%)
Mutual labels:  webrtc
Node Webrtc
node-webrtc is a Node.js Native Addon that provides bindings to WebRTC M87
Stars: ✭ 2,258 (+1088.42%)
Mutual labels:  webrtc
Webrtcbuilds
Getting started with WebRTC natively is no easy picnic. The goal of webrtcbuilds is to provide a single standalone WebRTC static library and package.
Stars: ✭ 185 (-2.63%)
Mutual labels:  webrtc
Rtcmulticonnection
RTCMultiConnection is a WebRTC JavaScript library for peer-to-peer applications (screen sharing, audio/video conferencing, file sharing, media streaming etc.)
Stars: ✭ 2,187 (+1051.05%)
Mutual labels:  webrtc
Playcanvas Ar
Fast and Easy Augmented Reality for the Web 🚀
Stars: ✭ 172 (-9.47%)
Mutual labels:  webrtc
Webrtc Leak Prevent
Prevent WebRTC leaks in Chromium browsers.
Stars: ✭ 182 (-4.21%)
Mutual labels:  webrtc
Peardownloader.js
一个支持多协议、多源、混合P2P-CDN的下载器
Stars: ✭ 170 (-10.53%)
Mutual labels:  webrtc
Opentok Ios Sdk Samples
Example applications that use the OpenTok iOS SDK
Stars: ✭ 186 (-2.11%)
Mutual labels:  webrtc
React Webrtc
Video chat using webRTC and react
Stars: ✭ 168 (-11.58%)
Mutual labels:  webrtc
Fonos
🚀 The open-source alternative to Twilio
Stars: ✭ 3,785 (+1892.11%)
Mutual labels:  webrtc
Netflux
JavaScript client and server side transport API based on WebRTC & WebSocket
Stars: ✭ 188 (-1.05%)
Mutual labels:  webrtc
Twilio Video App Android
A collaboration application built with the Twilio Video Android SDK
Stars: ✭ 186 (-2.11%)
Mutual labels:  webrtc
Javasecurity
Java web and command line applications demonstrating various security topics
Stars: ✭ 182 (-4.21%)
Mutual labels:  xss

WebRtcXSS

所有代码是基于ThinkPHP框架开发的

项目教程:http://www.freebuf.com/articles/web/103097.html

项目视频:http://open.freebuf.com/live/774.html

作者:Black-Hole

邮箱:[email protected] && [email protected]

安装说明

修改数据库配置文件

文件位置/Application/Common/Conf/config.php

<?php
return array(
	'URL_MODEL' => 0,  //URL模式,不用动
	'DB_TYPE' => 'mysql',  //数据库类型,不要更改
	'DB_HOST' => 'localhost',  //数据库地址
	'DB_NAME' => 'webrtcxss',  //数据库名称
	'DB_USER' => 'root', //数据库管理员账号
	'DB_PWD' => 'root',  //数据库管理员密码
	'DB_PORT' => '3306', //连接数据库的端口
	'DB_PREFIX' => 'webrtc_',  //数据库前缀
);

一般来说,你只需要更改DB_USER、DB_PWD就可以了。

导入sql数据库文件

MySQL命令行:

mysql -uroot -proot < sql.sql //-u后面跟上数据库账号,-p后面跟上数据库密码(没有空格),sql.sql是sql文件的位置,在项目的根目录下,注意路径,无回显。
mysql -uroot -proot //进入mysql命令行
> show databases; //查看是否存在webrtcxss数据库
//如果你在“修改数据库配置文件”时,使用了其他的数据库名称(修改了DB_NAME信息),切记在sql.sql文件里把“webrtcxss”字符串全部替换成“你修改的字符串”

docker

docker run -dit -p 8080:80 blackhole007/webrtcxss sh -c "lnmp start && bash"

结束

然后就没了,整个项目需要注意的地方,只有数据库方面。

注意:

  • 如果出现Undefined class constant ‘MYSQL_ATTR_INIT_COMMAND’错误

    需要开启PDO扩展


WebRtcXSS

All of the code is based on the framework for the development ThinkPHP

Project Tutorial:http://www.freebuf.com/articles/web/103097.html

Project Video:http://open.freebuf.com/live/774.html

Author:Black-Hole

Email:[email protected] && [email protected]

Important:

  • if(Errot === Undefined class constant ‘MYSQL_ATTR_INIT_COMMAND’){
    You need to enable the PDO extension }

docker

docker run -dit -p 8080:80 blackhole007/webrtcxss sh -c "lnmp start && bash"

Translation from Google

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].