
Security News
AI Slop Is Polluting Bug Bounty Platforms with Fake Vulnerability Reports
AI-generated slop reports are making bug bounty triage harder, wasting maintainer time, and straining trust in vulnerability disclosure programs.
@wireapp/avs-debugger
Advanced tools
Visualize and debug media tracks in web
npm install @wireapp/avs-debugger
The only way to use it currently is to build from source code and then link to your project
git clone git@github.com:wireapp/wire-avs-debugger.git
npm install
npm run build
npm link
Go to your Project and run:
npm link @wireapp/avs-debugger
<script type="application/javascript" src="dist/index.js"></script>
<script>
document.onreadystatechange = function () {
const state = document.readyState;
if (state == 'complete') {
// init web component
window.initTrackDebugger();
// API
document.getElementById('avs-debugger').addTrack(id, name, track);
document.getElementById('avs-debugger').removeTrack(id);
document.getElementById('avs-debugger').hasTrack(id);
document.getElementById('avs-debugger').reset();
// destruct web component
window.destructTrackDebugger();
}
}
</script>
import {AvsDebugger} from "@wireapp/avs-debugger";
avsTrackLogger
from
'@wireapp/avs-debugger';
// init web component
AvsDebugger.initTrackDebugger();
// API
AvsDebugger.addTrack(id, name, track);
AvsDebugger.removeTrack(id);
AvsDebugger.hasTrack(id);
AvsDebugger.reset();
// destruct web component
AvsDebugger.destructTrackDebugger();
npm install
npm start
npm install
npm run build
The generated artifacts are located in dist
A successful Github release automatically triggers an NPM release.
FAQs
Visualize and debug media tracks
The npm package @wireapp/avs-debugger receives a total of 51 weekly downloads. As such, @wireapp/avs-debugger popularity was classified as not popular.
We found that @wireapp/avs-debugger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AI-generated slop reports are making bug bounty triage harder, wasting maintainer time, and straining trust in vulnerability disclosure programs.
Research
Security News
The Socket Research team investigates a malicious Python package disguised as a Discord error logger that executes remote commands and exfiltrates data via a covert C2 channel.
Research
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.