Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/ask_a_question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Ask a Question
about: Ask a question about using dot
title: ''
labels: question
assignees: ''

---

## :question: Ask a Question:

### Description:

<!-- A clear and concise description of your question. Ex. what is/how to [...] -->
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Bug Report
about: Report bugs to improve dot
title: ''
labels: bug
assignees: ''

---

## :bug: Bug Report

<!-- Note: Remove sections from the template that are not relevant to the issue. -->

### Description:

#### Actual Behavior:

<!-- A clear and concise description of what the bug is. -->

#### Expected Behavior:

<!-- A clear and concise description of what you expected to happen. -->
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: Documentation
about: Report an issue related to dot documentation
title: ''
labels: documentation
assignees: ''

---

## :memo: Documentation

<!-- Note: Remove sections from the template that are not relevant to the issue. -->

### Description:

<!-- A clear and concise description of what needs to be added, updated or removed from current documentation. -->
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: Feature Request
about: Submit a feature request for dot
title: ''
labels: feature
assignees: ''

---

## :sparkles: Feature Request

<!-- Note: Remove sections from the template that are not relevant to the issue. -->

### Description:

<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->
36 changes: 36 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!-- Is this pull request ready for review? (if not, please submit in draft mode) -->

## Description

<!--
Please include a summary of the change and which issue is fixed.
Please also include relevant motivation and context.
List any dependencies that are required for this change.
-->

<!-- remove if not applicable -->

Fixes #(issue-number)

### Changelog:

<!--
Add changes in a list and add issue number in brackets, if required.
Remove sections which are not applicable and remember to update CHANGELOG.md as well.
-->

#### Added:

- ...

#### Updated:

- ...

#### Fixed:

- ...

#### Removed:

- ...
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

- ...

### Updated

- ...

### Fixed

- ...

### Removed

- ...

## [1.0.0] - 2022-06-04

- dot is open sourced

[Unreleased]: https://github.com/sensity-ai/dot/compare/1.0.0...HEAD
[1.0.0]: https://github.com/sensity-ai/dot/releases/tag/1.0.0
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Deepfake Offensive Toolkit
<div align="center">

[![build-dot](https://github.com/sensity-ai/dot/actions/workflows/build_dot.yaml/badge.svg)](https://github.com/sensity-ai/dot/actions/workflows/build_dot.yaml) [![code-check](https://github.com/sensity-ai/dot/actions/workflows/code_check.yaml/badge.svg)](https://github.com/sensity-ai/dot/actions/workflows/code_check.yaml)
<h1> Deepfake Offensive Toolkit </h1>

[![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-3712/)
[![license](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://github.com/sensity-ai/dot/blob/main/LICENSE)
[![build-dot](https://github.com/sensity-ai/dot/actions/workflows/build_dot.yaml/badge.svg)](https://github.com/sensity-ai/dot/actions/workflows/build_dot.yaml)
[![code-check](https://github.com/sensity-ai/dot/actions/workflows/code_check.yaml/badge.svg)](https://github.com/sensity-ai/dot/actions/workflows/code_check.yaml)

</div>

*dot* (aka Deepfake Offensive Toolkit) makes real-time, controllable deepfakes ready for virtual cameras injection. *dot* is created for performing penetration testing against e.g. identity verification and video conferencing systems, for the use by security analysts, Red Team members, and biometrics researchers.

Expand Down Expand Up @@ -256,6 +263,10 @@ If you have ideas for improving *dot*, feel free to open relevant Issues and PRs

If you are working on improving the speed of *dot*, please read first our guide on [code profiling](docs/profiling.md).

### Changelog

Visit [CHANGELOG.md](./CHANGELOG.md) to track changes in the repository.

### Setup Dev-Tools

1. Install Dev Requirements
Expand Down
2 changes: 1 addition & 1 deletion dot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from .dot import DOT

__version__ = "2.0.0"
__version__ = "1.0.0"
__author__ = "Sensity"
__url__ = "https://github.com/sensity-ai/dot/tree/main/dot"
__docs__ = "Deepfake offensive toolkit"
Expand Down