Skip to content

Commit

Permalink
Merge pull request #19 from rsalz47/dungwinux
Browse files Browse the repository at this point in the history
normalize CRLF and update README
  • Loading branch information
dungwinux authored Nov 9, 2022
2 parents cf78cff + 40a4f3d commit d31e497
Show file tree
Hide file tree
Showing 17 changed files with 3,895 additions and 3,893 deletions.
90 changes: 45 additions & 45 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
env:
browser: true
es2021: true
extends: xo
# extends: eslint:recommended
overrides: []
parserOptions:
ecmaVersion: latest
sourceType: module
rules:
indent:
- error
- 4
linebreak-style: off
quotes:
- error
- double
no-empty: warn
semi:
- error
- always
no-unreachable: error
no-constant-binary-expression: error
no-unreachable-loop: error
no-use-before-define: error
no-constructor-return: error
no-await-in-loop: error
array-callback-return: error
require-atomic-updates: error
no-unmodified-loop-condition: error
no-template-curly-in-string: error
no-self-compare: error
no-duplicate-imports: error
prefer-rest-params: error
no-empty-function: error
generator-star-spacing: off
comma-dangle: off
array-element-newline: off
no-return-assign: off
prefer-const: warn
max-len:
- error
- { code: 100 }
no-unused-expressions: warn
no-unused-vars: warn
env:
browser: true
es2021: true
extends: xo
# extends: eslint:recommended
overrides: []
parserOptions:
ecmaVersion: latest
sourceType: module
rules:
indent:
- error
- 4
linebreak-style: off
quotes:
- error
- double
no-empty: warn
semi:
- error
- always
no-unreachable: error
no-constant-binary-expression: error
no-unreachable-loop: error
no-use-before-define: error
no-constructor-return: error
no-await-in-loop: error
array-callback-return: error
require-atomic-updates: error
no-unmodified-loop-condition: error
no-template-curly-in-string: error
no-self-compare: error
no-duplicate-imports: error
prefer-rest-params: error
no-empty-function: error
generator-star-spacing: off
comma-dangle: off
array-element-newline: off
no-return-assign: off
prefer-const: warn
max-len:
- error
- { code: 100 }
no-unused-expressions: warn
no-unused-vars: warn
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/node_modules
./package-lock.json
./package.json
.gitignore
/node_modules
./package-lock.json
./package.json
.gitignore
# :)
42 changes: 21 additions & 21 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
MIT License
Copyright (c) 2022 rsalz47
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
MIT License

Copyright (c) 2022 rsalz47

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
59 changes: 30 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,30 @@
# cs326-final-gimel
:)

### 4 types of Data:

- User annotations/Comments
- Actual executable that is analyzed by analysis programs
- Output generated by program analysis tools
- Config data

### Visualizations:

> Coverage Graph
- Simple x/y line graph, user can dymanically define
> Colored control-flow (either via cfg's or source code)
>

### Frontend:

> Initially starts with Login Page
- Username
- Password
- Login button
>

### Documentation:

- [Ideas](docs/ideas.md)
- [Milestone 1](docs/milestone1.md)
# cs326-final-gimel
:)

### 4 types of Data:

- User annotations/Comments
- Actual executable that is analyzed by analysis programs
- Output generated by program analysis tools
- Config data

### Visualizations:

> Coverage Graph
- Simple x/y line graph, user can dymanically define
> Colored control-flow (either via cfg's or source code)
>

### Frontend:

> Initially starts with Login Page
- Username
- Password
- Login button
>

### Documentation:

- [Ideas](docs/ideas.md)
- [Milestone 1](docs/milestone1.md)
- [Milestone 2](docs/milestone2.md)
82 changes: 41 additions & 41 deletions docs/ideas.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
#### 326 Final Project

#### Team Name
- Gimel

#### Application Name
- fizzy

#### Team Overview
- Gilbert Hoermann - seal9055
- Dung Nguyen - dungwinux
- Ronan Salz - rsalz47

#### Innovative Idea
Our project is meant to be a tool for data visualization. The application be targeted at small-team based groups of users with the intention of a private instance being hosted locally. The
application enables multiple users to review and annotate the displayed data. Users will be
provided with multiple formats of data visualization to best suit their needs.

This idea does not directly correlate with existing applications as far as we are aware, but it is
intended to be used with program analysis tooling such as fuzzers/tracers that emit a lot of
structured data that would benefit from human readable visualization.

#### Important Components
- User Interface
- First step requires creation of a project, after which users will be able to log into the
application and access the project.
- Admin interface that can be used to manage account access
- Configuration tab to setup some options for the project
- Multiple tabs to display data in different formats such as line graphs, control-flow-graphs,
and a source code viewer.

- Server side
- Manage multiple connections for both end users and data transmission from the application that
provides the data to be visualized
- Implement logic to parse and visualize data
- Manage logins

- Database
- Store User Accounts
- Store provided data and edits the users made towards the existing data
- Configuration settings
#### 326 Final Project

#### Team Name
- Gimel

#### Application Name
- fizzy

#### Team Overview
- Gilbert Hoermann - seal9055
- Dung Nguyen - dungwinux
- Ronan Salz - rsalz47

#### Innovative Idea
Our project is meant to be a tool for data visualization. The application be targeted at small-team based groups of users with the intention of a private instance being hosted locally. The
application enables multiple users to review and annotate the displayed data. Users will be
provided with multiple formats of data visualization to best suit their needs.

This idea does not directly correlate with existing applications as far as we are aware, but it is
intended to be used with program analysis tooling such as fuzzers/tracers that emit a lot of
structured data that would benefit from human readable visualization.

#### Important Components
- User Interface
- First step requires creation of a project, after which users will be able to log into the
application and access the project.
- Admin interface that can be used to manage account access
- Configuration tab to setup some options for the project
- Multiple tabs to display data in different formats such as line graphs, control-flow-graphs,
and a source code viewer.

- Server side
- Manage multiple connections for both end users and data transmission from the application that
provides the data to be visualized
- Implement logic to parse and visualize data
- Manage logins

- Database
- Store User Accounts
- Store provided data and edits the users made towards the existing data
- Configuration settings
Loading

0 comments on commit d31e497

Please sign in to comment.