Secuna
  • Welcome!
  • Products
    • What is Secuna Pentest?
    • What is Secuna Discover?
    • What is Secuna Response?
  • FAQ
    • General
    • Programs
    • Security Researchers
  • Guides
    • Adding and Removing Program Team Members
    • Communicating with Researchers and Co-Admins as Program Admin
    • Paying bounties
    • Awarding bounties on bug reports
    • Create an account as Security Researcher
    • Create an account as Organization
    • Setup Secuna Response program
    • Setup Secuna Discover program
    • Markdown Syntax
  • Programs
    • Bug Bounty Program (BBP)
    • Vulnerability Disclosure Program (VDP)
    • Difference between an Open and a Private program
    • Program Roles
    • Report statuses on Secuna
    • Bug Bounty Table
    • Disclosure Types
  • Terms and Policies
    • Privacy Policy
    • Terms and Conditions
    • Disclosure Terms
Powered by GitBook
On this page
  • Headers
  • Blockquotes
  • Text Emphasis
  • Lists
  • Unordered Lists
  • Ordered Lists
  • Links
  • Inline-style links
  • Reference-style links
  • Code
  • One-line / In-line code
  • Multi-line code
  • Table

Was this helpful?

  1. Guides

Markdown Syntax

Secuna supports markdown syntax on reports and program policy pages.

PreviousSetup Secuna Discover programNextBug Bounty Program (BBP)

Last updated 3 years ago

Was this helpful?

Headers

Markdown Input

# Header 1

## Header 2

### Header 3

Markdown Output

Blockquotes

Markdown Input

> One line in blockquote
> How about two?
> How about more lines in blockquote

Markdown Output

Text Emphasis

Markdown Input

*This text is italicized*
**This text is bold**
~~This text is deleted~~

Markdown Output

Lists

Unordered Lists

Markdown Input

* Quezon City
* Makati City
* Taguig City

or

+ Quezon City
+ Makati City
+ Taguig City

or 

- Quezon City
- Makati City
- Taguig City

Markdown Output

Ordered Lists

Markdown Input

1. Red
2. Green
3. Blue

Markdown Output

Links

Inline-style links

Markdown Input

Kindly check out this [example link](http://example.com/).

Markdown Output

Reference-style links

Markdown Input

Aside from [OSCP][1], most of the cybersecurity professionals are also recommending [OSWE][2] and [OSCE][3] certifications.

[1]: https://www.offensive-security.com/pwk-oscp/
[2]: https://www.offensive-security.com/awae-oswe/
[3]: https://www.offensive-security.com/ctp-osce/

Markdown Output

Code

One-line / In-line code

Markdown Input

The following payload `javascript:alert(document.domain)` executes an XSS alert on your website.

Markdown Output

Multi-line code

Markdown Input

An XML External Entity attack is a type of attack against an application that parses XML input and allows XML entities. XML entities can be used to tell the XML parser to fetch specific content on the server.

```
<?xml version="1.0"?>
<!DOCTYPE data [
<!ELEMENT data (#ANY)>
<!ENTITY file SYSTEM "file:///etc/passwd">
]>
<data>&file;</data>
```

Markdown Output

Table

Markdown Input

| ID   | Names |
| --------- | ------- |
| 1    | Ameer |
| 2 | Nathu |
| 3      | Atom |

Markdown Output