Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
YouTube Security VideosGoogle Cloud Tech: Gemini is coming to your city(24.09.2026 um 15:00 Uhr)
AI & KI NachrichtenGoogle’s latest moonshot to put machine learning in space(24.09.2026 um 15:12 Uhr)
Windows Tipps & SecurityPoll: What's your favorite Surface of 2026?(24.09.2026 um 14:58 Uhr)
Sichere ProgrammierungStreaming Materialized Views for Live Read Models (2026)(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungA Day Is Not 86400 Seconds: The DST Bug in Your Date Math(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungSetting up Traefik: reverse proxy with automatic HTTPS(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungA 200 OK response does not prove a secret leak(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungHow hot do you like it?(24.09.2026 um 15:05 Uhr)
YouTube Security VideosGoogle Cloud Tech: Gemini is coming to your city(24.09.2026 um 15:00 Uhr)
AI & KI NachrichtenGoogle’s latest moonshot to put machine learning in space(24.09.2026 um 15:12 Uhr)
Windows Tipps & SecurityPoll: What's your favorite Surface of 2026?(24.09.2026 um 14:58 Uhr)
Sichere ProgrammierungStreaming Materialized Views for Live Read Models (2026)(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungA Day Is Not 86400 Seconds: The DST Bug in Your Date Math(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungSetting up Traefik: reverse proxy with automatic HTTPS(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungA 200 OK response does not prove a secret leak(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungHow hot do you like it?(24.09.2026 um 15:05 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

# Não fique perdido sobre o que é JSON, fique maluco!

Brincadeira, nesse artigo vou te mostrar como você vai aprender o que é JSON De uma forma que seja simples, para até mesmo para um cavalo prender o que seja, JSON Relaxa JSON não vai te matar Mas afinal de conta, o que é o be…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!




Brincadeira, nesse artigo vou te mostrar como você vai aprender o que é JSON



De uma forma que seja simples, para até mesmo para um cavalo prender o que seja, JSON



Relaxa JSON não vai te matar



Image description






Mas afinal de conta, o que é o bendito JSON?



JSON está ligado na area de desenvolvimento de Software,

ele é um formato simples e leve de troca de dados.



Basease em um subconjunto da linguagem JavaScript (JavaScript Object Notation), mas calma, por mais que ele carregue o nome do Javacript, ele não é puramente escrito nessa linguagem.



JSON é um formato de texto, que é completamente,



ele é facilmente interpretado por qual quer programador por ter um padrão logico, muito simples. linguagens:

C, incluindo C,C++, C#,Java, Javascript, Perl, Python e muitas outras linguagem.

Ou seja, é utilizado para a grande maioria das linguagem de programação.





Para simplificar mais ainda, o JSON é:



Ele é utilizado para troca e armazenamento de dados, facil de aprender e de ser gerado.





Te mosrtrei o que é, mas como é contruido?



Vou te explicar:



JSON ele é composto por duas estrutura




  • Uma coleção de pares nome/valor. Em várias linguagens, isso é realizado como um objeto , registro, struct, dicionário, tabela hash, lista com chave ou array associativo.


  • Uma lista ordenada de valores. Na maioria das linguagens, isso é realizado como um array , vetor, lista ou sequência.




Essas são estruturas de dados universais.





Quais são as linguagem que aceitam ou com facil integração JSON?




  1. JavaScript → JSON.parse() e JSON.stringify()

  2. Python → Módulo json

  3. Java → Jackson ou Gson

  4. C# → System.Text.Json e Newtonsoft.Json

  5. PHP → json_encode() e json_decode()

  6. Ruby → Módulo json

  7. Go → Pacote encoding/json

  8. Swift → JSONSerialization

  9. Dart (Flutter) → dart:convert (jsonDecode() e jsonEncode())

  10. Rust → Biblioteca serde_json





Qual é o formato JSON?



Esse é um modelo em que fizemos para meu estudo sobre JSON.



Mas aqui podemos ver que a criação do JSON é bem simples, basicamente uma estrutura baseada em pares de Chaves-valor

{ } podendo conter arrays, numeros, string booleanos e valores nulos




{
"project": "Estudo",
"studies_log": [
{
"start_date": "25/02/2025",
"end_date": "04/03/2025",
"total_points": "",
"total_tasks": ""
},
{
"start_date": "",
"end_date": "",
"total_points": "",
"total_tasks": ""
}
]
}






(Outro exemplo)





{
"nome": "João",
"idade": 25,
"email": "[email protected]",
"casado": false,
"filhos": ["Ana", "Pedro"],
"endereco": {
"rua": "Av. Paulista",
"numero": 100,
"cidade": "São Paulo"
}
}







Aqui são as regras do JSON



✅ As chaves devem estar entre aspas (" ")



✅ Os valores podem ser:




  • Strings ("texto")

  • Números (25, 3.14)

  • Booleanos (true, false)

  • Arrays ([1, 2, 3])

  • Objetos ({ "chave": "valor" })

  • null (valor nulo)



❌ Sem vírgula no último item de um objeto ou array.






Como criar um JSON na pratica?




  1. Você pode escrever um arquivo JSON (dados.json) e salvar o conteudo nele.


  2. Criando o JSON em diferentes linguagem.







Javascript







const dados = {
nome: "João",
idade: 25
};

const jsonString = JSON.stringify(dados); // Converte objeto para JSON (string)

console.log(jsonString);











Python







const dados = {
nome: "João",
idade: 25
};

const jsonString = JSON.stringify(dados); // Converte objeto para JSON (string)

console.log(jsonString);










JAVA







import org.json.JSONObject;

public class Main {
public static void main(String[] args) {
JSONObject json = new JSONObject();
json.put("nome", "João");
json.put("idade", 25);

System.out.println(json.toString());
}
}










PHP



O PHP é um pouco diferente em relação as chaves, mas a estrutura, é "a mesma".





<?php
// Criando um array associativo (estrutura de dados em PHP)
$dados = [
"nome" => "João",
"idade" => 25,
"email" => "[email protected]",
"casado" => false,
"filhos" => ["Ana", "Pedro"],
"endereco" => [
"rua" => "Av. Paulista",
"numero" => 100,
"cidade" => "São Paulo"
]
];

// Convertendo para JSON
$json = json_encode($dados, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE);

// Exibindo o JSON formatado
echo $json;
?>







Mas por fim esse é o Json, ele recolhe dados do usuarios ou dados, deu pra perceber que ele não é um bicho de 300 cabeça é só uma, então agradeço de já a sua leitura e por favor, não enche o meu saco.



Image description

SOC Incident Playbook: Remote Code Execution (RCE) Defense
title: Detect Exploitation - # Não fique perdido sobre o que é JSON, fique maluco!
id: a10fe9c6-9377-4bb2-bce2-9b5c1abba4e1
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "# Não fique perdido sobre o qu" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich # Não fique perdido sobre o que é JSON, .... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten # Não fique perdido sobre o que é JSON, fique maluco!

Thematisch verwandte Begriffe: fique, perdido, sobre, JSON · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-97179 | A security vulnerability has been detected in O2OA up to 9.5.3/10.0.2. T…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick