Added actors list to counters pages
Этот коммит содержится в:
родитель
bb60a2bddf
Коммит
a6c4a652e8
Двоичные данные
AMITT_MASTER_DATA/~$AMITT_TTPs_MASTER.xlsx
Обычный файл
Двоичные данные
AMITT_MASTER_DATA/~$AMITT_TTPs_MASTER.xlsx
Обычный файл
Двоичный файл не отображается.
Двоичный файл не отображается.
@ -246,6 +246,18 @@ class Amitt:
|
||||
table_string += row_string.format(row['id'], row['name'], row['responsetype'])
|
||||
return table_string
|
||||
|
||||
def create_counter_actors_string(self, counter_id):
|
||||
table_string = '''
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
'''
|
||||
counter_actors = self.cross_counterid_actorid[self.cross_counterid_actorid['id']==counter_id]
|
||||
counter_actors = pd.merge(counter_actors, self.df_actors[['id', 'name', 'sector']], left_on='actor_id', right_on='id')
|
||||
row_string = '| [{0} {1}](../actors/{0}.md) | {2} |\n'
|
||||
for index, row in counter_actors.sort_values('actor_id').iterrows():
|
||||
table_string += row_string.format(row['actor_id'], row['name'], row['sector'])
|
||||
return table_string
|
||||
|
||||
def create_actor_counters_string(self, actor_id):
|
||||
table_string = '''
|
||||
| Counters | Response types |
|
||||
@ -441,6 +453,7 @@ class Amitt:
|
||||
metatext = template.format(type = 'Counter', id=row['id'], name=row['name'],
|
||||
tactic=row['tactic_id'], summary=row['summary'],
|
||||
playbooks=row['playbooks'], metatechnique=row['metatechnique'],
|
||||
actors=self.create_counter_actors_string(row['id']),
|
||||
resources_needed=row['resources_needed'],
|
||||
tactics=self.create_counter_tactics_string(row['id']),
|
||||
techniques=self.create_counter_techniques_string(row['id']),
|
||||
|
||||
@ -10,6 +10,8 @@
|
||||
|
||||
* **Belongs to tactic stage**: {tactic}
|
||||
|
||||
{actors}
|
||||
|
||||
{tactics}
|
||||
|
||||
{techniques}
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
"cells": [
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 1,
|
||||
"execution_count": 2,
|
||||
"metadata": {
|
||||
"scrolled": true
|
||||
},
|
||||
@ -21,7 +21,8 @@
|
||||
"updated ../tasks_index.md\n",
|
||||
"updated ../incidents_index.md\n",
|
||||
"updated ../counters_index.md\n",
|
||||
"Updating ../counters/C00194.md\n",
|
||||
"Updating ../counters/C00006.md\n",
|
||||
"Updating ../counters/C00006.md\n",
|
||||
"updated ../metatechniques_index.md\n",
|
||||
"updated ../actors_index.md\n",
|
||||
"updated ../responsetype_index.md\n",
|
||||
@ -40,38 +41,9 @@
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 2,
|
||||
"execution_count": null,
|
||||
"metadata": {},
|
||||
"outputs": [
|
||||
{
|
||||
"name": "stdout",
|
||||
"output_type": "stream",
|
||||
"text": [
|
||||
"dict_keys(['df_phases', 'df_techniques', 'df_tasks', 'df_incidents', 'df_counters', 'df_detections', 'df_actors', 'df_resources', 'df_responsetypes', 'df_metatechniques', 'it', 'df_tactics', 'df_techniques_per_tactic', 'df_counters_per_tactic', 'phases', 'tactics', 'techniques', 'counters', 'metatechniques', 'actors', 'resources', 'num_tactics', 'cross_counterid_techniqueid', 'cross_counterid_resourceid', 'cross_counterid_actorid'])\n"
|
||||
]
|
||||
},
|
||||
{
|
||||
"data": {
|
||||
"text/plain": [
|
||||
"{'TA01': 'Strategic Planning',\n",
|
||||
" 'TA02': 'Objective Planning',\n",
|
||||
" 'TA03': 'Develop People',\n",
|
||||
" 'TA04': 'Develop Networks',\n",
|
||||
" 'TA05': 'Microtargeting',\n",
|
||||
" 'TA06': 'Develop Content',\n",
|
||||
" 'TA07': 'Channel Selection',\n",
|
||||
" 'TA08': 'Pump Priming',\n",
|
||||
" 'TA09': 'Exposure',\n",
|
||||
" 'TA10': 'Go Physical',\n",
|
||||
" 'TA11': 'Persistence',\n",
|
||||
" 'TA12': 'Measure Effectiveness'}"
|
||||
]
|
||||
},
|
||||
"execution_count": 2,
|
||||
"metadata": {},
|
||||
"output_type": "execute_result"
|
||||
}
|
||||
],
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"# Check which amitt variables we can see from here\n",
|
||||
"print('{}'.format(vars(amitt).keys()))\n",
|
||||
@ -87,7 +59,7 @@
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 1,
|
||||
"execution_count": null,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
@ -98,129 +70,9 @@
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 13,
|
||||
"execution_count": null,
|
||||
"metadata": {},
|
||||
"outputs": [
|
||||
{
|
||||
"data": {
|
||||
"text/html": [
|
||||
"<div>\n",
|
||||
"<style scoped>\n",
|
||||
" .dataframe tbody tr th:only-of-type {\n",
|
||||
" vertical-align: middle;\n",
|
||||
" }\n",
|
||||
"\n",
|
||||
" .dataframe tbody tr th {\n",
|
||||
" vertical-align: top;\n",
|
||||
" }\n",
|
||||
"\n",
|
||||
" .dataframe thead th {\n",
|
||||
" text-align: right;\n",
|
||||
" }\n",
|
||||
"</style>\n",
|
||||
"<table border=\"1\" class=\"dataframe\">\n",
|
||||
" <thead>\n",
|
||||
" <tr style=\"text-align: right;\">\n",
|
||||
" <th></th>\n",
|
||||
" <th>id</th>\n",
|
||||
" <th>technique_id</th>\n",
|
||||
" <th>Weight</th>\n",
|
||||
" </tr>\n",
|
||||
" </thead>\n",
|
||||
" <tbody>\n",
|
||||
" <tr>\n",
|
||||
" <th>1</th>\n",
|
||||
" <td>C00008</td>\n",
|
||||
" <td>TA01</td>\n",
|
||||
" <td>1</td>\n",
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1</th>\n",
|
||||
" <td>C00008</td>\n",
|
||||
" <td>TA06</td>\n",
|
||||
" <td>1</td>\n",
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1</th>\n",
|
||||
" <td>C00008</td>\n",
|
||||
" <td>TA08</td>\n",
|
||||
" <td>1</td>\n",
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1</th>\n",
|
||||
" <td>C00008</td>\n",
|
||||
" <td>T0006</td>\n",
|
||||
" <td>1</td>\n",
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>1</th>\n",
|
||||
" <td>C00008</td>\n",
|
||||
" <td>T0009</td>\n",
|
||||
" <td>1</td>\n",
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>...</th>\n",
|
||||
" <td>...</td>\n",
|
||||
" <td>...</td>\n",
|
||||
" <td>...</td>\n",
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>120</th>\n",
|
||||
" <td>C00165</td>\n",
|
||||
" <td>T00025</td>\n",
|
||||
" <td>1</td>\n",
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>126</th>\n",
|
||||
" <td>C00174</td>\n",
|
||||
" <td>T0001</td>\n",
|
||||
" <td>1</td>\n",
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>138</th>\n",
|
||||
" <td>C00197</td>\n",
|
||||
" <td>T0007</td>\n",
|
||||
" <td>1</td>\n",
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>138</th>\n",
|
||||
" <td>C00197</td>\n",
|
||||
" <td>T0011</td>\n",
|
||||
" <td>1</td>\n",
|
||||
" </tr>\n",
|
||||
" <tr>\n",
|
||||
" <th>140</th>\n",
|
||||
" <td>C00202</td>\n",
|
||||
" <td>T0025</td>\n",
|
||||
" <td>1</td>\n",
|
||||
" </tr>\n",
|
||||
" </tbody>\n",
|
||||
"</table>\n",
|
||||
"<p>263 rows × 3 columns</p>\n",
|
||||
"</div>"
|
||||
],
|
||||
"text/plain": [
|
||||
" id technique_id Weight\n",
|
||||
"1 C00008 TA01 1\n",
|
||||
"1 C00008 TA06 1\n",
|
||||
"1 C00008 TA08 1\n",
|
||||
"1 C00008 T0006 1\n",
|
||||
"1 C00008 T0009 1\n",
|
||||
".. ... ... ...\n",
|
||||
"120 C00165 T00025 1\n",
|
||||
"126 C00174 T0001 1\n",
|
||||
"138 C00197 T0007 1\n",
|
||||
"138 C00197 T0011 1\n",
|
||||
"140 C00202 T0025 1\n",
|
||||
"\n",
|
||||
"[263 rows x 3 columns]"
|
||||
]
|
||||
},
|
||||
"execution_count": 13,
|
||||
"metadata": {},
|
||||
"output_type": "execute_result"
|
||||
}
|
||||
],
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"ct = amitt.cross_counterid_techniqueid\n",
|
||||
"ct['Weight'] = 1\n",
|
||||
@ -231,7 +83,7 @@
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 12,
|
||||
"execution_count": null,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": []
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
|
||||
| Counters | Response types |
|
||||
| -------- | -------------- |
|
||||
| [C00092 Reputation scores for social media influencers](../counters/C00092.md) | D7 Deter |
|
||||
| [C00092 Establish a truth teller reputation score for influencers](../counters/C00092.md) | D7 Deter |
|
||||
| [C00160 find and train influencers](../counters/C00160.md) | D2 Deny |
|
||||
|
||||
|
||||
|
||||
@ -13,10 +13,10 @@
|
||||
| [C00011 Media literacy. Games to identify fake news](../counters/C00011.md) | D2 Deny |
|
||||
| [C00051 Counter social engineering training](../counters/C00051.md) | D2 Deny |
|
||||
| [C00073 Inoculate populations through media literacy training](../counters/C00073.md) | D2 Deny |
|
||||
| [C00158 Use training to build the resilience of at-risk populations.](../counters/C00158.md) | D4 Degrade |
|
||||
| [C00188 Newsroom/Journalist training to counter SEO influence](../counters/C00188.md) | D3 Disrupt |
|
||||
| [C00158 Use training to build the resilience of at-risk populations](../counters/C00158.md) | D4 Degrade |
|
||||
| [C00188 Newsroom/Journalist training to counter influence moves](../counters/C00188.md) | D3 Disrupt |
|
||||
| [C00193 promotion of a “higher standard of journalism”](../counters/C00193.md) | D3 Disrupt |
|
||||
| [C00212 build public resilence by making civil society more vibrant](../counters/C00212.md) | D3 Disrupt |
|
||||
| [C00212 build public resilience by making civil society more vibrant](../counters/C00212.md) | D3 Disrupt |
|
||||
|
||||
|
||||
DO NOT EDIT ABOVE THIS LINE - PLEASE ADD NOTES BELOW
|
||||
@ -9,7 +9,7 @@
|
||||
|
||||
| Counters | Response types |
|
||||
| -------- | -------------- |
|
||||
| [C00111 Present sympathetic views of opposite side](../counters/C00111.md) | D4 Degrade |
|
||||
| [C00111 Reduce polarisation by connecting and presenting sympathetic renditions of opposite views](../counters/C00111.md) | D4 Degrade |
|
||||
|
||||
|
||||
DO NOT EDIT ABOVE THIS LINE - PLEASE ADD NOTES BELOW
|
||||
@ -10,12 +10,12 @@
|
||||
| Counters | Response types |
|
||||
| -------- | -------------- |
|
||||
| [C00012 Platform regulation](../counters/C00012.md) | D2 Deny |
|
||||
| [C00156 Better tell the U.S., NATO, and EU story.](../counters/C00156.md) | D3 Disrupt |
|
||||
| [C00156 Better tell your country or organization story](../counters/C00156.md) | D3 Disrupt |
|
||||
| [C00196 Include the role of social media in the regulatory framework for media](../counters/C00196.md) | D3 Disrupt |
|
||||
| [C00203 Stop offering press credentials to propaganda outlets](../counters/C00203.md) | D3 Disrupt |
|
||||
| [C00205 strong dialogue between the federal government and private sector to encourage better reporting](../counters/C00205.md) | D3 Disrupt |
|
||||
| [C00207 Run a competing disinformation campaign - not recommended](../counters/C00207.md) | D7 Deter |
|
||||
| [C00212 build public resilence by making civil society more vibrant](../counters/C00212.md) | D3 Disrupt |
|
||||
| [C00212 build public resilience by making civil society more vibrant](../counters/C00212.md) | D3 Disrupt |
|
||||
|
||||
|
||||
DO NOT EDIT ABOVE THIS LINE - PLEASE ADD NOTES BELOW
|
||||
@ -9,7 +9,7 @@
|
||||
|
||||
| Counters | Response types |
|
||||
| -------- | -------------- |
|
||||
| [C00156 Better tell the U.S., NATO, and EU story.](../counters/C00156.md) | D3 Disrupt |
|
||||
| [C00156 Better tell your country or organization story](../counters/C00156.md) | D3 Disrupt |
|
||||
|
||||
|
||||
DO NOT EDIT ABOVE THIS LINE - PLEASE ADD NOTES BELOW
|
||||
@ -11,12 +11,12 @@
|
||||
| -------- | -------------- |
|
||||
| [C00017 Repair broken social connections](../counters/C00017.md) | D3 Disrupt |
|
||||
| [C00073 Inoculate populations through media literacy training](../counters/C00073.md) | D2 Deny |
|
||||
| [C00111 Present sympathetic views of opposite side](../counters/C00111.md) | D4 Degrade |
|
||||
| [C00111 Reduce polarisation by connecting and presenting sympathetic renditions of opposite views](../counters/C00111.md) | D4 Degrade |
|
||||
| [C00124 Don't feed the trolls](../counters/C00124.md) | D3 Disrupt |
|
||||
| [C00154 Ask media not to report false information](../counters/C00154.md) | D2 Deny |
|
||||
| [C00158 Use training to build the resilience of at-risk populations.](../counters/C00158.md) | D4 Degrade |
|
||||
| [C00158 Use training to build the resilience of at-risk populations](../counters/C00158.md) | D4 Degrade |
|
||||
| [C00174 Create a healthier news environment](../counters/C00174.md) | D2 Deny |
|
||||
| [C00188 Newsroom/Journalist training to counter SEO influence](../counters/C00188.md) | D3 Disrupt |
|
||||
| [C00188 Newsroom/Journalist training to counter influence moves](../counters/C00188.md) | D3 Disrupt |
|
||||
| [C00193 promotion of a “higher standard of journalism”](../counters/C00193.md) | D3 Disrupt |
|
||||
| [C00204 Strengthen local media](../counters/C00204.md) | D2 Deny |
|
||||
|
||||
|
||||
@ -10,7 +10,7 @@
|
||||
| Counters | Response types |
|
||||
| -------- | -------------- |
|
||||
| [C00053 Delete old accounts / Remove unused social media accounts](../counters/C00053.md) | D4 Degrade |
|
||||
| [C00074 Identify identical content and mass deplatform](../counters/C00074.md) | D2 Deny |
|
||||
| [C00074 Identify and delete or rate limit identical content](../counters/C00074.md) | D2 Deny |
|
||||
| [C00217 Registries alert when large batches of newsy URLs get registered together](../counters/C00217.md) | D2 Deny |
|
||||
|
||||
|
||||
|
||||
@ -9,24 +9,25 @@
|
||||
|
||||
| Counters | Response types |
|
||||
| -------- | -------------- |
|
||||
| [C00006 Charge for social media](../counters/C00006.md) | D2 Deny |
|
||||
| [C00006 Censorship](../counters/C00006.md) | D2 Deny |
|
||||
| [C00044 Keep people from posting to social media immediately](../counters/C00044.md) | D3 Disrupt |
|
||||
| [C00053 Delete old accounts / Remove unused social media accounts](../counters/C00053.md) | D4 Degrade |
|
||||
| [C00074 Identify identical content and mass deplatform](../counters/C00074.md) | D2 Deny |
|
||||
| [C00074 Identify and delete or rate limit identical content](../counters/C00074.md) | D2 Deny |
|
||||
| [C00097 Require use of verified identities to contribute to poll or comment](../counters/C00097.md) | D2 Deny |
|
||||
| [C00098 Revocation of "verified"](../counters/C00098.md) | D2 Deny |
|
||||
| [C00098 Revocation of allowlisted or "verified" status](../counters/C00098.md) | D2 Deny |
|
||||
| [C00099 Strengthen verification methods](../counters/C00099.md) | D2 Deny |
|
||||
| [C00101 Create participant friction](../counters/C00101.md) | D4 Degrade |
|
||||
| [C00101 Create friction by rate-limiting engagement](../counters/C00101.md) | D4 Degrade |
|
||||
| [C00102 Make repeat voting harder](../counters/C00102.md) | D4 Degrade |
|
||||
| [C00122 Content moderation. Censorship?](../counters/C00122.md) | D2 Deny |
|
||||
| [C00122 Content moderation](../counters/C00122.md) | D2 Deny |
|
||||
| [C00133 Deplatform Account*](../counters/C00133.md) | D3 Disrupt |
|
||||
| [C00135 Deplatform message groups and/or message boards](../counters/C00135.md) | D3 Disrupt |
|
||||
| [C00142 Platform adds warning label and decision point when sharing content](../counters/C00142.md) | D4 Degrade |
|
||||
| [C00147 Make amplification of social media ports expire (e.g. can't like/ retweet after n days)](../counters/C00147.md) | D3 Disrupt |
|
||||
| [C00148 Add random links to network graphs](../counters/C00148.md) | D4 Degrade |
|
||||
| [C00171 social media content take-downs](../counters/C00171.md) | D2 Deny |
|
||||
| [C00172 social media page removal](../counters/C00172.md) | D2 Deny |
|
||||
| [C00172 social media source removal](../counters/C00172.md) | D2 Deny |
|
||||
| [C00197 remove suspicious accounts](../counters/C00197.md) | D2 Deny |
|
||||
| [C00218 Censorship](../counters/C00218.md) | D2 Deny |
|
||||
|
||||
|
||||
DO NOT EDIT ABOVE THIS LINE - PLEASE ADD NOTES BELOW
|
||||
@ -10,6 +10,7 @@
|
||||
| Counters | Response types |
|
||||
| -------- | -------------- |
|
||||
| [C00006 Charge for social media](../counters/C00006.md) | D2 Deny |
|
||||
| [C00006 Censorship](../counters/C00006.md) | D2 Deny |
|
||||
| [C00012 Platform regulation](../counters/C00012.md) | D2 Deny |
|
||||
| [C00205 strong dialogue between the federal government and private sector to encourage better reporting](../counters/C00205.md) | D3 Disrupt |
|
||||
| [C00207 Run a competing disinformation campaign - not recommended](../counters/C00207.md) | D7 Deter |
|
||||
|
||||
@ -17,211 +17,239 @@
|
||||
<td><a href="tactics/TA12.md">TA12 Measure Effectiveness</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00006.md">C00006 Charge for social media</a></td>
|
||||
<td><a href="counters/C00006.md">C00006 Censorship</a></td>
|
||||
<td><a href="counters/C00009.md">C00009 Educate high profile influencers on best practices</a></td>
|
||||
<td><a href="counters/C00034.md">C00034 Create more friction at account creation</a></td>
|
||||
<td><a href="counters/C00047.md">C00047 Coordinated inauthentics</a></td>
|
||||
<td><a href="counters/C00065.md">C00065 Reduce political targeting</a></td>
|
||||
<td><a href="counters/C00014.md">C00014 Real-time updates to fact-checking database</a></td>
|
||||
<td><a href="counters/C00097.md">C00097 Require use of verified identities to contribute to poll or comment</a></td>
|
||||
<td><a href="counters/C00112.md">C00112 "Prove they are not an op!"</a></td>
|
||||
<td><a href="counters/C00089.md">C00089 Throttle number of forwards</a></td>
|
||||
<td><a href="counters/C00129.md">C00129 Use banking to cut off access </a></td>
|
||||
<td><a href="counters/C00100.md">C00100 Hashtag jacking</a></td>
|
||||
<td><a href="counters/C00109.md">C00109 Dampen Emotional Reaction</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00131.md">C00131 Seize and analyse botnet servers</a></td>
|
||||
<td><a href="counters/C00090.md">C00090 Fake engagement system</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00008.md">C00008 Create shared fact-checking database</a></td>
|
||||
<td><a href="counters/C00006.md">C00006 Censorship</a></td>
|
||||
<td><a href="counters/C00011.md">C00011 Media literacy. Games to identify fake news</a></td>
|
||||
<td><a href="counters/C00036.md">C00036 Infiltrate the in-group to discredit leaders (divide)</a></td>
|
||||
<td><a href="counters/C00052.md">C00052 Infiltrate platforms</a></td>
|
||||
<td><a href="counters/C00066.md">C00066 Co-opt a hashtag and drown it out (hijack it back)</a></td>
|
||||
<td><a href="counters/C00032.md">C00032 Hijack content and link to truth- based info</a></td>
|
||||
<td><a href="counters/C00098.md">C00098 Revocation of "verified"</a></td>
|
||||
<td><a href="counters/C00113.md">C00113 Debunk and defuse a fake expert / credentials. Attack audience quality of fake expert</a></td>
|
||||
<td><a href="counters/C00122.md">C00122 Content moderation. Censorship?</a></td>
|
||||
<td><a href="counters/C00097.md">C00097 Require use of verified identities to contribute to poll or comment</a></td>
|
||||
<td><a href="counters/C00112.md">C00112 "Prove they are not an op!"</a></td>
|
||||
<td><a href="counters/C00122.md">C00122 Content moderation</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00138.md">C00138 Spam domestic actors with lawsuits</a></td>
|
||||
<td><a href="counters/C00137.md">C00137 Pollute the AB-testing data feeds</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00008.md">C00008 Create shared fact-checking database</a></td>
|
||||
<td><a href="counters/C00028.md">C00028 Make information provenance available</a></td>
|
||||
<td><a href="counters/C00040.md">C00040 third party verification for people</a></td>
|
||||
<td><a href="counters/C00053.md">C00053 Delete old accounts / Remove unused social media accounts</a></td>
|
||||
<td><a href="counters/C00130.md">C00130 Mentorship: elders, youth, credit. Learn vicariously.</a></td>
|
||||
<td><a href="counters/C00133.md">C00133 Deplatform Account*</a></td>
|
||||
<td><a href="counters/C00071.md">C00071 Block source of pollution</a></td>
|
||||
<td><a href="counters/C00098.md">C00098 Revocation of allowlisted or "verified" status</a></td>
|
||||
<td><a href="counters/C00113.md">C00113 Debunk and defuse a fake expert / credentials. Attack audience quality of fake expert</a></td>
|
||||
<td><a href="counters/C00123.md">C00123 Remove or rate limit botnets</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00139.md">C00139 Weaponise youtube content matrices</a></td>
|
||||
<td><a href="counters/C00140.md">C00140 "Bomb" link shorteners with lots of calls</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00010.md">C00010 Enhanced privacy regulation for social media</a></td>
|
||||
<td><a href="counters/C00028.md">C00028 Make information provenance available</a></td>
|
||||
<td><a href="counters/C00040.md">C00040 third party verification for people</a></td>
|
||||
<td><a href="counters/C00053.md">C00053 Delete old accounts / Remove unused social media accounts</a></td>
|
||||
<td><a href="counters/C00216.md">C00216 Use advertiser controls to stem flow of funds to bad actors</a></td>
|
||||
<td><a href="counters/C00071.md">C00071 Block source of pollution</a></td>
|
||||
<td><a href="counters/C00099.md">C00099 Strengthen verification methods</a></td>
|
||||
<td><a href="counters/C00114.md">C00114 Don't engage with payloads</a></td>
|
||||
<td><a href="counters/C00123.md">C00123 Bot control</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00135.md">C00135 Deplatform message groups and/or message boards</a></td>
|
||||
<td><a href="counters/C00147.md">C00147 Make amplification of social media ports expire (e.g. can't like/ retweet after n days)</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00012.md">C00012 Platform regulation</a></td>
|
||||
<td><a href="counters/C00029.md">C00029 Create fake website to issue counter narrative and counter narrative through physical merchandise</a></td>
|
||||
<td><a href="counters/C00042.md">C00042 Address truth contained in narratives</a></td>
|
||||
<td><a href="counters/C00056.md">C00056 Get off social media</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00072.md">C00072 Content censorship in non-relevant domains e.g. Pinterest antivax</a></td>
|
||||
<td><a href="counters/C00100.md">C00100 Hashtag jacking</a></td>
|
||||
<td><a href="counters/C00115.md">C00115 Expose actor and intentions</a></td>
|
||||
<td><a href="counters/C00178.md">C00178 Fill information voids with non-disinformation content</a></td>
|
||||
<td><a href="counters/C00072.md">C00072 Remove non-relevant content from special interest groups – not recommended</a></td>
|
||||
<td><a href="counters/C00099.md">C00099 Strengthen verification methods</a></td>
|
||||
<td><a href="counters/C00114.md">C00114 Don't engage with payloads</a></td>
|
||||
<td><a href="counters/C00124.md">C00124 Don't feed the trolls</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00136.md">C00136 Microtarget most likely targets then send them countermessages</a></td>
|
||||
<td><a href="counters/C00143.md">C00143 (botnet) DMCA takedown requests to waste group time</a></td>
|
||||
<td><a href="counters/C00148.md">C00148 Add random links to network graphs</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00013.md">C00013 Rating framework for news</a></td>
|
||||
<td><a href="counters/C00012.md">C00012 Platform regulation</a></td>
|
||||
<td><a href="counters/C00030.md">C00030 Develop a compelling counter narrative (truth based)</a></td>
|
||||
<td><a href="counters/C00044.md">C00044 Keep people from posting to social media immediately</a></td>
|
||||
<td><a href="counters/C00059.md">C00059 Verification of project before posting (counters funding campaigns)</a></td>
|
||||
<td><a href="counters/C00216.md">C00216 Use advertiser controls to stem flow of funds to bad actors</a></td>
|
||||
<td><a href="counters/C00074.md">C00074 Identify and delete or rate limit identical content</a></td>
|
||||
<td><a href="counters/C00101.md">C00101 Create friction by rate-limiting engagement</a></td>
|
||||
<td><a href="counters/C00115.md">C00115 Expose actor and intentions</a></td>
|
||||
<td><a href="counters/C00125.md">C00125 Prebunking</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00074.md">C00074 Identify identical content and mass deplatform</a></td>
|
||||
<td><a href="counters/C00101.md">C00101 Create participant friction</a></td>
|
||||
<td><a href="counters/C00116.md">C00116 Provide proof of involvement</a></td>
|
||||
<td><a href="counters/C00125.md">C00125 Prepare the population with pre-announcements</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00137.md">C00137 Pollute the AB-testing data feeds</a></td>
|
||||
<td><a href="counters/C00145.md">C00145 Pollute the data voids with wholesome content (Kittens! Babyshark!)</a></td>
|
||||
<td><a href="counters/C00149.md">C00149 Poison the monitoring & evaluation data</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00016.md">C00016 Censorship - not recommended</a></td>
|
||||
<td><a href="counters/C00013.md">C00013 Rating framework for news</a></td>
|
||||
<td><a href="counters/C00031.md">C00031 Dilute the core narrative - create multiple permutations, target / amplify</a></td>
|
||||
<td><a href="counters/C00046.md">C00046 Marginalise and discredit extremist groups</a></td>
|
||||
<td><a href="counters/C00062.md">C00062 Free open library sources worldwide</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00075.md">C00075 normalise language</a></td>
|
||||
<td><a href="counters/C00102.md">C00102 Make repeat voting harder</a></td>
|
||||
<td><a href="counters/C00117.md">C00117 Downgrade de-amplify label promote counter to disinformation</a></td>
|
||||
<td><a href="counters/C00116.md">C00116 Provide proof of involvement</a></td>
|
||||
<td><a href="counters/C00126.md">C00126 Social media amber alert</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00138.md">C00138 Spam domestic actors with lawsuits</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00017.md">C00017 Repair broken social connections</a></td>
|
||||
<td><a href="counters/C00060.md">C00060 Legal action against for-profit engagement factories</a></td>
|
||||
<td><a href="counters/C00048.md">C00048 Name and Shame Influencers</a></td>
|
||||
<td><a href="counters/C00162.md">C00162 collect data/map constellations of Russian“civil society”. Unravel/target the Potemkin villages</a></td>
|
||||
<td><a href="counters/C00135.md">C00135 Deplatform message groups and/or message boards</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00076.md">C00076 Prohibit images in political discourse channels</a></td>
|
||||
<td><a href="counters/C00103.md">C00103 Create a bot that engages / distract trolls</a></td>
|
||||
<td><a href="counters/C00118.md">C00118 Repurpose images with new text</a></td>
|
||||
<td><a href="counters/C00117.md">C00117 Downgrade / de-amplify so message is seen by fewer people</a></td>
|
||||
<td><a href="counters/C00128.md">C00128 Create friction by marking content with ridicule or other "decelerants"</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00139.md">C00139 Weaponise youtube content matrices</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00019.md">C00019 Reduce effect of division-enablers</a></td>
|
||||
<td><a href="counters/C00070.md">C00070 Block access to disinformation resources</a></td>
|
||||
<td><a href="counters/C00051.md">C00051 Counter social engineering training</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00162.md">C00162 Unravel/target the Potemkin villages</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00078.md">C00078 Change Search Algorithms for Disinformation Content</a></td>
|
||||
<td><a href="counters/C00105.md">C00105 Buy more advertising than the adversary to shift influence and algorithms</a></td>
|
||||
<td><a href="counters/C00119.md">C00119 Engage payload and debunk. Provide link to facts. </a></td>
|
||||
<td><a href="counters/C00151.md">C00151 “fight in the light”</a></td>
|
||||
<td><a href="counters/C00118.md">C00118 Repurpose images with new text</a></td>
|
||||
<td><a href="counters/C00129.md">C00129 Use banking to cut off access </a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00143.md">C00143 (botnet) DMCA takedown requests to waste group time</a></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00021.md">C00021 Encourage in-person communication</a></td>
|
||||
<td><a href="counters/C00092.md">C00092 Reputation scores for social media influencers</a></td>
|
||||
<td><a href="counters/C00092.md">C00092 Establish a truth teller reputation score for influencers</a></td>
|
||||
<td><a href="counters/C00058.md">C00058 Report crowdfunder as violator</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00172.md">C00172 social media source removal</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00080.md">C00080 Create competing narrative</a></td>
|
||||
<td><a href="counters/C00106.md">C00106 Click-bait centrist content</a></td>
|
||||
<td><a href="counters/C00120.md">C00120 Open dialogue about design of platforms to produce different outcomes</a></td>
|
||||
<td><a href="counters/C00156.md">C00156 Better tell the U.S., NATO, and EU story.</a></td>
|
||||
<td><a href="counters/C00110.md">C00110 Monetize centrist SEO by subsidizing the difference in greater clicks towards extremist content</a></td>
|
||||
<td><a href="counters/C00119.md">C00119 Engage payload and debunk. Provide link to facts. </a></td>
|
||||
<td><a href="counters/C00147.md">C00147 Make amplification of social media ports expire (e.g. can't like/ retweet after n days)</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00144.md">C00144 Buy out troll farm employees / offer them jobs</a></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00022.md">C00022 Innoculate. Positive campaign to promote feeling of safety</a></td>
|
||||
<td><a href="counters/C00164.md">C00164 compatriot policy</a></td>
|
||||
<td><a href="counters/C00144.md">C00144 Buy out troll farm employees / offer them jobs</a></td>
|
||||
<td><a href="counters/C00067.md">C00067 Denigrate the recipient/ project (of online funding)</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00203.md">C00203 Stop offering press credentials to propaganda outlets</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00081.md">C00081 Highlight flooding and noise, and explain motivations</a></td>
|
||||
<td><a href="counters/C00107.md">C00107 Content moderation</a></td>
|
||||
<td><a href="counters/C00121.md">C00121 Tool transparency and literacy for channels people follow. </a></td>
|
||||
<td><a href="counters/C00158.md">C00158 Use training to build the resilience of at-risk populations.</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00145.md">C00145 Pollute the data voids with wholesome content (Kittens! Babyshark!)</a></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00024.md">C00024 Promote healthy narratives</a></td>
|
||||
<td><a href="counters/C00207.md">C00207 Run a competing disinformation campaign - not recommended</a></td>
|
||||
<td><a href="counters/C00077.md">C00077 Active defence: run TA03 "develop people” - not recommended</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00082.md">C00082 Ground truthing as automated response to pollution</a></td>
|
||||
<td><a href="counters/C00109.md">C00109 De-escalation</a></td>
|
||||
<td><a href="counters/C00154.md">C00154 Ask media not to report false information</a></td>
|
||||
<td><a href="counters/C00169.md">C00169 develop a creative content hub</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00026.md">C00026 Shore up democracy based messages</a></td>
|
||||
<td><a href="counters/C00222.md">C00222 Tabletop simulations</a></td>
|
||||
<td><a href="counters/C00093.md">C00093 Influencer code of conduct</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00084.md">C00084 Modify disinformation narratives, and rebroadcast them</a></td>
|
||||
<td><a href="counters/C00110.md">C00110 Monetize centrist SEO by subsidizing the difference in greater clicks towards extremist content</a></td>
|
||||
<td><a href="counters/C00188.md">C00188 Newsroom/Journalist training to counter SEO influence</a></td>
|
||||
<td><a href="counters/C00178.md">C00178 Fill information voids with non-disinformation content</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00027.md">C00027 Create culture of civility</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00155.md">C00155 Ban incident actors from funding sites</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00085.md">C00085 Mute content</a></td>
|
||||
<td><a href="counters/C00111.md">C00111 Present sympathetic views of opposite side</a></td>
|
||||
<td><a href="counters/C00193.md">C00193 promotion of a “higher standard of journalism”</a></td>
|
||||
<td><a href="counters/C00195.md">C00195 Redirect searches away from disinformation or extremist content </a></td>
|
||||
<td><a href="counters/C00120.md">C00120 Open dialogue about design of platforms to produce different outcomes</a></td>
|
||||
<td><a href="counters/C00182.md">C00182 malware detection/quarantine/deletion</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00073.md">C00073 Inoculate populations through media literacy training</a></td>
|
||||
<td><a href="counters/C00024.md">C00024 Promote healthy narratives</a></td>
|
||||
<td><a href="counters/C00156.md">C00156 Better tell your country or organization story</a></td>
|
||||
<td><a href="counters/C00077.md">C00077 Active defence: run TA03 "develop people” - not recommended</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00160.md">C00160 find and train influencers</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00082.md">C00082 Ground truthing as automated response to pollution</a></td>
|
||||
<td><a href="counters/C00217.md">C00217 Registries alert when large batches of newsy URLs get registered together</a></td>
|
||||
<td><a href="counters/C00121.md">C00121 Tool transparency and literacy for channels people follow. </a></td>
|
||||
<td><a href="counters/C00200.md">C00200 Respected figure (influencer) disavows misinfo</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00026.md">C00026 Shore up democracy based messages</a></td>
|
||||
<td><a href="counters/C00164.md">C00164 compatriot policy</a></td>
|
||||
<td><a href="counters/C00093.md">C00093 Influencer code of conduct</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00084.md">C00084 Modify disinformation narratives, and rebroadcast them</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00136.md">C00136 Microtarget most likely targets then send them countermessages</a></td>
|
||||
<td><a href="counters/C00211.md">C00211 Use humorous counter-narratives</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00027.md">C00027 Create culture of civility</a></td>
|
||||
<td><a href="counters/C00169.md">C00169 develop a creative content hub</a></td>
|
||||
<td><a href="counters/C00133.md">C00133 Deplatform Account*</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00085.md">C00085 Mute content</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00154.md">C00154 Ask media not to report false information</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00073.md">C00073 Inoculate populations through media literacy training</a></td>
|
||||
<td><a href="counters/C00207.md">C00207 Run a competing disinformation campaign - not recommended</a></td>
|
||||
<td><a href="counters/C00155.md">C00155 Ban incident actors from funding sites</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00086.md">C00086 Distract from noise with addictive content</a></td>
|
||||
<td><a href="counters/C00195.md">C00195 Redirect Method</a></td>
|
||||
<td><a href="counters/C00203.md">C00203 Stop offering press credentials to propaganda outlets</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00184.md">C00184 Media exposure</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00096.md">C00096 Strengthen institutions that are always truth tellers</a></td>
|
||||
<td><a href="counters/C00222.md">C00222 Tabletop simulations</a></td>
|
||||
<td><a href="counters/C00160.md">C00160 find and train influencers</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00087.md">C00087 Make more noise than the disinformation</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00188.md">C00188 Newsroom/Journalist training to counter influence moves</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00111.md">C00111 Reduce polarisation by connecting and presenting sympathetic renditions of opposite views</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00189.md">C00189 Ensure that platforms are taking down flagged accounts</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00087.md">C00087 Make more noise than the disinformation</a></td>
|
||||
<td><a href="counters/C00196.md">C00196 Include the role of social media in the regulatory framework for media</a></td>
|
||||
<td><a href="counters/C00091.md">C00091 Honeypot social community</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00193.md">C00193 promotion of a “higher standard of journalism”</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00151.md">C00151 “fight in the light”</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00197.md">C00197 remove suspicious accounts</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00094.md">C00094 Force full disclosure on corporate sponsor of research</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00204.md">C00204 Strengthen local media</a></td>
|
||||
<td><a href="counters/C00190.md">C00190 open engagement with civil society</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
@ -229,13 +257,27 @@
|
||||
<tr>
|
||||
<td><a href="counters/C00153.md">C00153 Take pre-emptive action against actors' infrastructure</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00197.md">C00197 remove suspicious accounts</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00091.md">C00091 Honeypot social community</a></td>
|
||||
<td><a href="counters/C00214.md">C00214 Create policy that makes social media police disinformation</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00194.md">C00194 Provide an alternative to Russian information by expanding and improving local content.</a></td>
|
||||
<td><a href="counters/C00106.md">C00106 Click-bait centrist content</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00158.md">C00158 Use training to build the resilience of at-risk populations</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00107.md">C00107 Content moderation</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
@ -246,60 +288,32 @@
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00094.md">C00094 Force full disclosure on corporate sponsor of research</a></td>
|
||||
<td><a href="counters/C00215.md">C00215 Use fraud legislation to clean up social media</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00200.md">C00200 Respected figure (influencer) disavows misinfo</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00161.md">C00161 Coalition Building and Third-Party Inducements:</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00142.md">C00142 Platform adds warning label and decision point when sharing content</a></td>
|
||||
<td><a href="counters/C00217.md">C00217 Registries alert when large batches of newsy URLs get registered together</a></td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00211.md">C00211 Use humorous counter-narratives</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00170.md">C00170 elevate information as a critical domain of statecraft</a></td>
|
||||
<td><a href="counters/C00161.md">C00161 Coalition Building with stakeholders and Third-Party Inducements</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00165.md">C00165 Limit access to alterable documents</a></td>
|
||||
<td><a href="counters/C00165.md">C00165 Ensure integrity of official documents</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00212.md">C00212 build public resilence by making civil society more vibrant</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00174.md">C00174 Create a healthier news environment</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00167.md">C00167 Deploy Information and Narrative-Building in Service of Statecraft</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00218.md">C00218 Censorship</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00176.md">C00176 Improve Coordination amongst stakeholders: public and private</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00171.md">C00171 social media content take-downs</a></td>
|
||||
@ -311,21 +325,7 @@
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00205.md">C00205 strong dialogue between the federal government and private sector to encourage better reporting</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td><a href="counters/C00172.md">C00172 social media page removal</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00220.md">C00220 Develop a monitoring and intelligence plan</a></td>
|
||||
<td><a href="counters/C00170.md">C00170 elevate information as a critical domain of statecraft</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
@ -339,7 +339,7 @@
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00221.md">C00221 Run a disinformation red team, and design mitigation factors</a></td>
|
||||
<td><a href="counters/C00174.md">C00174 Create a healthier news environment</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
@ -353,6 +353,146 @@
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00176.md">C00176 Improve Coordination amongst stakeholders: public and private</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00190.md">C00190 open engagement with civil society</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00194.md">C00194 Provide an alternative to disinformation content by expanding and improving local content</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00196.md">C00196 Include the role of social media in the regulatory framework for media</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00205.md">C00205 strong dialogue between the federal government and private sector to encourage better reporting</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00212.md">C00212 build public resilience by making civil society more vibrant</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00214.md">C00214 Create policy that makes social media police disinformation</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00215.md">C00215 Use fraud legislation to clean up social media</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00220.md">C00220 Develop a monitoring and intelligence plan</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00221.md">C00221 Run a disinformation red team, and design mitigation factors</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="counters/C00223.md">C00223 Strengthen Trust in social media platforms</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
|
||||
@ -52,211 +52,239 @@ function handleTechniqueClick(box) {
|
||||
<td>TA12 Measure Effectiveness</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00006">C00006 Charge for social media<input type="checkbox" id="C00006check" onclick="handleTechniqueClick('C00006')"></td>
|
||||
<td id="C00006">C00006 Censorship<input type="checkbox" id="C00006check" onclick="handleTechniqueClick('C00006')"></td>
|
||||
<td id="C00009">C00009 Educate high profile influencers on best practices<input type="checkbox" id="C00009check" onclick="handleTechniqueClick('C00009')"></td>
|
||||
<td id="C00034">C00034 Create more friction at account creation<input type="checkbox" id="C00034check" onclick="handleTechniqueClick('C00034')"></td>
|
||||
<td id="C00047">C00047 Coordinated inauthentics<input type="checkbox" id="C00047check" onclick="handleTechniqueClick('C00047')"></td>
|
||||
<td id="C00065">C00065 Reduce political targeting<input type="checkbox" id="C00065check" onclick="handleTechniqueClick('C00065')"></td>
|
||||
<td id="C00014">C00014 Real-time updates to fact-checking database<input type="checkbox" id="C00014check" onclick="handleTechniqueClick('C00014')"></td>
|
||||
<td id="C00097">C00097 Require use of verified identities to contribute to poll or comment<input type="checkbox" id="C00097check" onclick="handleTechniqueClick('C00097')"></td>
|
||||
<td id="C00112">C00112 "Prove they are not an op!"<input type="checkbox" id="C00112check" onclick="handleTechniqueClick('C00112')"></td>
|
||||
<td id="C00089">C00089 Throttle number of forwards<input type="checkbox" id="C00089check" onclick="handleTechniqueClick('C00089')"></td>
|
||||
<td id="C00129">C00129 Use banking to cut off access <input type="checkbox" id="C00129check" onclick="handleTechniqueClick('C00129')"></td>
|
||||
<td id="C00100">C00100 Hashtag jacking<input type="checkbox" id="C00100check" onclick="handleTechniqueClick('C00100')"></td>
|
||||
<td id="C00109">C00109 Dampen Emotional Reaction<input type="checkbox" id="C00109check" onclick="handleTechniqueClick('C00109')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00131">C00131 Seize and analyse botnet servers<input type="checkbox" id="C00131check" onclick="handleTechniqueClick('C00131')"></td>
|
||||
<td id="C00090">C00090 Fake engagement system<input type="checkbox" id="C00090check" onclick="handleTechniqueClick('C00090')"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00008">C00008 Create shared fact-checking database<input type="checkbox" id="C00008check" onclick="handleTechniqueClick('C00008')"></td>
|
||||
<td id="C00006">C00006 Censorship<input type="checkbox" id="C00006check" onclick="handleTechniqueClick('C00006')"></td>
|
||||
<td id="C00011">C00011 Media literacy. Games to identify fake news<input type="checkbox" id="C00011check" onclick="handleTechniqueClick('C00011')"></td>
|
||||
<td id="C00036">C00036 Infiltrate the in-group to discredit leaders (divide)<input type="checkbox" id="C00036check" onclick="handleTechniqueClick('C00036')"></td>
|
||||
<td id="C00052">C00052 Infiltrate platforms<input type="checkbox" id="C00052check" onclick="handleTechniqueClick('C00052')"></td>
|
||||
<td id="C00066">C00066 Co-opt a hashtag and drown it out (hijack it back)<input type="checkbox" id="C00066check" onclick="handleTechniqueClick('C00066')"></td>
|
||||
<td id="C00032">C00032 Hijack content and link to truth- based info<input type="checkbox" id="C00032check" onclick="handleTechniqueClick('C00032')"></td>
|
||||
<td id="C00098">C00098 Revocation of "verified"<input type="checkbox" id="C00098check" onclick="handleTechniqueClick('C00098')"></td>
|
||||
<td id="C00113">C00113 Debunk and defuse a fake expert / credentials. Attack audience quality of fake expert<input type="checkbox" id="C00113check" onclick="handleTechniqueClick('C00113')"></td>
|
||||
<td id="C00122">C00122 Content moderation. Censorship?<input type="checkbox" id="C00122check" onclick="handleTechniqueClick('C00122')"></td>
|
||||
<td id="C00097">C00097 Require use of verified identities to contribute to poll or comment<input type="checkbox" id="C00097check" onclick="handleTechniqueClick('C00097')"></td>
|
||||
<td id="C00112">C00112 "Prove they are not an op!"<input type="checkbox" id="C00112check" onclick="handleTechniqueClick('C00112')"></td>
|
||||
<td id="C00122">C00122 Content moderation<input type="checkbox" id="C00122check" onclick="handleTechniqueClick('C00122')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00138">C00138 Spam domestic actors with lawsuits<input type="checkbox" id="C00138check" onclick="handleTechniqueClick('C00138')"></td>
|
||||
<td id="C00137">C00137 Pollute the AB-testing data feeds<input type="checkbox" id="C00137check" onclick="handleTechniqueClick('C00137')"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00008">C00008 Create shared fact-checking database<input type="checkbox" id="C00008check" onclick="handleTechniqueClick('C00008')"></td>
|
||||
<td id="C00028">C00028 Make information provenance available<input type="checkbox" id="C00028check" onclick="handleTechniqueClick('C00028')"></td>
|
||||
<td id="C00040">C00040 third party verification for people<input type="checkbox" id="C00040check" onclick="handleTechniqueClick('C00040')"></td>
|
||||
<td id="C00053">C00053 Delete old accounts / Remove unused social media accounts<input type="checkbox" id="C00053check" onclick="handleTechniqueClick('C00053')"></td>
|
||||
<td id="C00130">C00130 Mentorship: elders, youth, credit. Learn vicariously.<input type="checkbox" id="C00130check" onclick="handleTechniqueClick('C00130')"></td>
|
||||
<td id="C00133">C00133 Deplatform Account*<input type="checkbox" id="C00133check" onclick="handleTechniqueClick('C00133')"></td>
|
||||
<td id="C00071">C00071 Block source of pollution<input type="checkbox" id="C00071check" onclick="handleTechniqueClick('C00071')"></td>
|
||||
<td id="C00098">C00098 Revocation of allowlisted or "verified" status<input type="checkbox" id="C00098check" onclick="handleTechniqueClick('C00098')"></td>
|
||||
<td id="C00113">C00113 Debunk and defuse a fake expert / credentials. Attack audience quality of fake expert<input type="checkbox" id="C00113check" onclick="handleTechniqueClick('C00113')"></td>
|
||||
<td id="C00123">C00123 Remove or rate limit botnets<input type="checkbox" id="C00123check" onclick="handleTechniqueClick('C00123')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00139">C00139 Weaponise youtube content matrices<input type="checkbox" id="C00139check" onclick="handleTechniqueClick('C00139')"></td>
|
||||
<td id="C00140">C00140 "Bomb" link shorteners with lots of calls<input type="checkbox" id="C00140check" onclick="handleTechniqueClick('C00140')"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00010">C00010 Enhanced privacy regulation for social media<input type="checkbox" id="C00010check" onclick="handleTechniqueClick('C00010')"></td>
|
||||
<td id="C00028">C00028 Make information provenance available<input type="checkbox" id="C00028check" onclick="handleTechniqueClick('C00028')"></td>
|
||||
<td id="C00040">C00040 third party verification for people<input type="checkbox" id="C00040check" onclick="handleTechniqueClick('C00040')"></td>
|
||||
<td id="C00053">C00053 Delete old accounts / Remove unused social media accounts<input type="checkbox" id="C00053check" onclick="handleTechniqueClick('C00053')"></td>
|
||||
<td id="C00216">C00216 Use advertiser controls to stem flow of funds to bad actors<input type="checkbox" id="C00216check" onclick="handleTechniqueClick('C00216')"></td>
|
||||
<td id="C00071">C00071 Block source of pollution<input type="checkbox" id="C00071check" onclick="handleTechniqueClick('C00071')"></td>
|
||||
<td id="C00099">C00099 Strengthen verification methods<input type="checkbox" id="C00099check" onclick="handleTechniqueClick('C00099')"></td>
|
||||
<td id="C00114">C00114 Don't engage with payloads<input type="checkbox" id="C00114check" onclick="handleTechniqueClick('C00114')"></td>
|
||||
<td id="C00123">C00123 Bot control<input type="checkbox" id="C00123check" onclick="handleTechniqueClick('C00123')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00135">C00135 Deplatform message groups and/or message boards<input type="checkbox" id="C00135check" onclick="handleTechniqueClick('C00135')"></td>
|
||||
<td id="C00147">C00147 Make amplification of social media ports expire (e.g. can't like/ retweet after n days)<input type="checkbox" id="C00147check" onclick="handleTechniqueClick('C00147')"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00012">C00012 Platform regulation<input type="checkbox" id="C00012check" onclick="handleTechniqueClick('C00012')"></td>
|
||||
<td id="C00029">C00029 Create fake website to issue counter narrative and counter narrative through physical merchandise<input type="checkbox" id="C00029check" onclick="handleTechniqueClick('C00029')"></td>
|
||||
<td id="C00042">C00042 Address truth contained in narratives<input type="checkbox" id="C00042check" onclick="handleTechniqueClick('C00042')"></td>
|
||||
<td id="C00056">C00056 Get off social media<input type="checkbox" id="C00056check" onclick="handleTechniqueClick('C00056')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00072">C00072 Content censorship in non-relevant domains e.g. Pinterest antivax<input type="checkbox" id="C00072check" onclick="handleTechniqueClick('C00072')"></td>
|
||||
<td id="C00100">C00100 Hashtag jacking<input type="checkbox" id="C00100check" onclick="handleTechniqueClick('C00100')"></td>
|
||||
<td id="C00115">C00115 Expose actor and intentions<input type="checkbox" id="C00115check" onclick="handleTechniqueClick('C00115')"></td>
|
||||
<td id="C00178">C00178 Fill information voids with non-disinformation content<input type="checkbox" id="C00178check" onclick="handleTechniqueClick('C00178')"></td>
|
||||
<td id="C00072">C00072 Remove non-relevant content from special interest groups – not recommended<input type="checkbox" id="C00072check" onclick="handleTechniqueClick('C00072')"></td>
|
||||
<td id="C00099">C00099 Strengthen verification methods<input type="checkbox" id="C00099check" onclick="handleTechniqueClick('C00099')"></td>
|
||||
<td id="C00114">C00114 Don't engage with payloads<input type="checkbox" id="C00114check" onclick="handleTechniqueClick('C00114')"></td>
|
||||
<td id="C00124">C00124 Don't feed the trolls<input type="checkbox" id="C00124check" onclick="handleTechniqueClick('C00124')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00136">C00136 Microtarget most likely targets then send them countermessages<input type="checkbox" id="C00136check" onclick="handleTechniqueClick('C00136')"></td>
|
||||
<td id="C00143">C00143 (botnet) DMCA takedown requests to waste group time<input type="checkbox" id="C00143check" onclick="handleTechniqueClick('C00143')"></td>
|
||||
<td id="C00148">C00148 Add random links to network graphs<input type="checkbox" id="C00148check" onclick="handleTechniqueClick('C00148')"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00013">C00013 Rating framework for news<input type="checkbox" id="C00013check" onclick="handleTechniqueClick('C00013')"></td>
|
||||
<td id="C00012">C00012 Platform regulation<input type="checkbox" id="C00012check" onclick="handleTechniqueClick('C00012')"></td>
|
||||
<td id="C00030">C00030 Develop a compelling counter narrative (truth based)<input type="checkbox" id="C00030check" onclick="handleTechniqueClick('C00030')"></td>
|
||||
<td id="C00044">C00044 Keep people from posting to social media immediately<input type="checkbox" id="C00044check" onclick="handleTechniqueClick('C00044')"></td>
|
||||
<td id="C00059">C00059 Verification of project before posting (counters funding campaigns)<input type="checkbox" id="C00059check" onclick="handleTechniqueClick('C00059')"></td>
|
||||
<td id="C00216">C00216 Use advertiser controls to stem flow of funds to bad actors<input type="checkbox" id="C00216check" onclick="handleTechniqueClick('C00216')"></td>
|
||||
<td id="C00074">C00074 Identify and delete or rate limit identical content<input type="checkbox" id="C00074check" onclick="handleTechniqueClick('C00074')"></td>
|
||||
<td id="C00101">C00101 Create friction by rate-limiting engagement<input type="checkbox" id="C00101check" onclick="handleTechniqueClick('C00101')"></td>
|
||||
<td id="C00115">C00115 Expose actor and intentions<input type="checkbox" id="C00115check" onclick="handleTechniqueClick('C00115')"></td>
|
||||
<td id="C00125">C00125 Prebunking<input type="checkbox" id="C00125check" onclick="handleTechniqueClick('C00125')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00074">C00074 Identify identical content and mass deplatform<input type="checkbox" id="C00074check" onclick="handleTechniqueClick('C00074')"></td>
|
||||
<td id="C00101">C00101 Create participant friction<input type="checkbox" id="C00101check" onclick="handleTechniqueClick('C00101')"></td>
|
||||
<td id="C00116">C00116 Provide proof of involvement<input type="checkbox" id="C00116check" onclick="handleTechniqueClick('C00116')"></td>
|
||||
<td id="C00125">C00125 Prepare the population with pre-announcements<input type="checkbox" id="C00125check" onclick="handleTechniqueClick('C00125')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00137">C00137 Pollute the AB-testing data feeds<input type="checkbox" id="C00137check" onclick="handleTechniqueClick('C00137')"></td>
|
||||
<td id="C00145">C00145 Pollute the data voids with wholesome content (Kittens! Babyshark!)<input type="checkbox" id="C00145check" onclick="handleTechniqueClick('C00145')"></td>
|
||||
<td id="C00149">C00149 Poison the monitoring & evaluation data<input type="checkbox" id="C00149check" onclick="handleTechniqueClick('C00149')"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00016">C00016 Censorship - not recommended<input type="checkbox" id="C00016check" onclick="handleTechniqueClick('C00016')"></td>
|
||||
<td id="C00013">C00013 Rating framework for news<input type="checkbox" id="C00013check" onclick="handleTechniqueClick('C00013')"></td>
|
||||
<td id="C00031">C00031 Dilute the core narrative - create multiple permutations, target / amplify<input type="checkbox" id="C00031check" onclick="handleTechniqueClick('C00031')"></td>
|
||||
<td id="C00046">C00046 Marginalise and discredit extremist groups<input type="checkbox" id="C00046check" onclick="handleTechniqueClick('C00046')"></td>
|
||||
<td id="C00062">C00062 Free open library sources worldwide<input type="checkbox" id="C00062check" onclick="handleTechniqueClick('C00062')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00075">C00075 normalise language<input type="checkbox" id="C00075check" onclick="handleTechniqueClick('C00075')"></td>
|
||||
<td id="C00102">C00102 Make repeat voting harder<input type="checkbox" id="C00102check" onclick="handleTechniqueClick('C00102')"></td>
|
||||
<td id="C00117">C00117 Downgrade de-amplify label promote counter to disinformation<input type="checkbox" id="C00117check" onclick="handleTechniqueClick('C00117')"></td>
|
||||
<td id="C00116">C00116 Provide proof of involvement<input type="checkbox" id="C00116check" onclick="handleTechniqueClick('C00116')"></td>
|
||||
<td id="C00126">C00126 Social media amber alert<input type="checkbox" id="C00126check" onclick="handleTechniqueClick('C00126')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00138">C00138 Spam domestic actors with lawsuits<input type="checkbox" id="C00138check" onclick="handleTechniqueClick('C00138')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00017">C00017 Repair broken social connections<input type="checkbox" id="C00017check" onclick="handleTechniqueClick('C00017')"></td>
|
||||
<td id="C00060">C00060 Legal action against for-profit engagement factories<input type="checkbox" id="C00060check" onclick="handleTechniqueClick('C00060')"></td>
|
||||
<td id="C00048">C00048 Name and Shame Influencers<input type="checkbox" id="C00048check" onclick="handleTechniqueClick('C00048')"></td>
|
||||
<td id="C00162">C00162 collect data/map constellations of Russian“civil society”. Unravel/target the Potemkin villages<input type="checkbox" id="C00162check" onclick="handleTechniqueClick('C00162')"></td>
|
||||
<td id="C00135">C00135 Deplatform message groups and/or message boards<input type="checkbox" id="C00135check" onclick="handleTechniqueClick('C00135')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00076">C00076 Prohibit images in political discourse channels<input type="checkbox" id="C00076check" onclick="handleTechniqueClick('C00076')"></td>
|
||||
<td id="C00103">C00103 Create a bot that engages / distract trolls<input type="checkbox" id="C00103check" onclick="handleTechniqueClick('C00103')"></td>
|
||||
<td id="C00118">C00118 Repurpose images with new text<input type="checkbox" id="C00118check" onclick="handleTechniqueClick('C00118')"></td>
|
||||
<td id="C00117">C00117 Downgrade / de-amplify so message is seen by fewer people<input type="checkbox" id="C00117check" onclick="handleTechniqueClick('C00117')"></td>
|
||||
<td id="C00128">C00128 Create friction by marking content with ridicule or other "decelerants"<input type="checkbox" id="C00128check" onclick="handleTechniqueClick('C00128')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00139">C00139 Weaponise youtube content matrices<input type="checkbox" id="C00139check" onclick="handleTechniqueClick('C00139')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00019">C00019 Reduce effect of division-enablers<input type="checkbox" id="C00019check" onclick="handleTechniqueClick('C00019')"></td>
|
||||
<td id="C00070">C00070 Block access to disinformation resources<input type="checkbox" id="C00070check" onclick="handleTechniqueClick('C00070')"></td>
|
||||
<td id="C00051">C00051 Counter social engineering training<input type="checkbox" id="C00051check" onclick="handleTechniqueClick('C00051')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00162">C00162 Unravel/target the Potemkin villages<input type="checkbox" id="C00162check" onclick="handleTechniqueClick('C00162')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00078">C00078 Change Search Algorithms for Disinformation Content<input type="checkbox" id="C00078check" onclick="handleTechniqueClick('C00078')"></td>
|
||||
<td id="C00105">C00105 Buy more advertising than the adversary to shift influence and algorithms<input type="checkbox" id="C00105check" onclick="handleTechniqueClick('C00105')"></td>
|
||||
<td id="C00119">C00119 Engage payload and debunk. Provide link to facts. <input type="checkbox" id="C00119check" onclick="handleTechniqueClick('C00119')"></td>
|
||||
<td id="C00151">C00151 “fight in the light”<input type="checkbox" id="C00151check" onclick="handleTechniqueClick('C00151')"></td>
|
||||
<td id="C00118">C00118 Repurpose images with new text<input type="checkbox" id="C00118check" onclick="handleTechniqueClick('C00118')"></td>
|
||||
<td id="C00129">C00129 Use banking to cut off access <input type="checkbox" id="C00129check" onclick="handleTechniqueClick('C00129')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00143">C00143 (botnet) DMCA takedown requests to waste group time<input type="checkbox" id="C00143check" onclick="handleTechniqueClick('C00143')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00021">C00021 Encourage in-person communication<input type="checkbox" id="C00021check" onclick="handleTechniqueClick('C00021')"></td>
|
||||
<td id="C00092">C00092 Reputation scores for social media influencers<input type="checkbox" id="C00092check" onclick="handleTechniqueClick('C00092')"></td>
|
||||
<td id="C00092">C00092 Establish a truth teller reputation score for influencers<input type="checkbox" id="C00092check" onclick="handleTechniqueClick('C00092')"></td>
|
||||
<td id="C00058">C00058 Report crowdfunder as violator<input type="checkbox" id="C00058check" onclick="handleTechniqueClick('C00058')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00172">C00172 social media source removal<input type="checkbox" id="C00172check" onclick="handleTechniqueClick('C00172')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00080">C00080 Create competing narrative<input type="checkbox" id="C00080check" onclick="handleTechniqueClick('C00080')"></td>
|
||||
<td id="C00106">C00106 Click-bait centrist content<input type="checkbox" id="C00106check" onclick="handleTechniqueClick('C00106')"></td>
|
||||
<td id="C00120">C00120 Open dialogue about design of platforms to produce different outcomes<input type="checkbox" id="C00120check" onclick="handleTechniqueClick('C00120')"></td>
|
||||
<td id="C00156">C00156 Better tell the U.S., NATO, and EU story.<input type="checkbox" id="C00156check" onclick="handleTechniqueClick('C00156')"></td>
|
||||
<td id="C00110">C00110 Monetize centrist SEO by subsidizing the difference in greater clicks towards extremist content<input type="checkbox" id="C00110check" onclick="handleTechniqueClick('C00110')"></td>
|
||||
<td id="C00119">C00119 Engage payload and debunk. Provide link to facts. <input type="checkbox" id="C00119check" onclick="handleTechniqueClick('C00119')"></td>
|
||||
<td id="C00147">C00147 Make amplification of social media ports expire (e.g. can't like/ retweet after n days)<input type="checkbox" id="C00147check" onclick="handleTechniqueClick('C00147')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00144">C00144 Buy out troll farm employees / offer them jobs<input type="checkbox" id="C00144check" onclick="handleTechniqueClick('C00144')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00022">C00022 Innoculate. Positive campaign to promote feeling of safety<input type="checkbox" id="C00022check" onclick="handleTechniqueClick('C00022')"></td>
|
||||
<td id="C00164">C00164 compatriot policy<input type="checkbox" id="C00164check" onclick="handleTechniqueClick('C00164')"></td>
|
||||
<td id="C00144">C00144 Buy out troll farm employees / offer them jobs<input type="checkbox" id="C00144check" onclick="handleTechniqueClick('C00144')"></td>
|
||||
<td id="C00067">C00067 Denigrate the recipient/ project (of online funding)<input type="checkbox" id="C00067check" onclick="handleTechniqueClick('C00067')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00203">C00203 Stop offering press credentials to propaganda outlets<input type="checkbox" id="C00203check" onclick="handleTechniqueClick('C00203')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00081">C00081 Highlight flooding and noise, and explain motivations<input type="checkbox" id="C00081check" onclick="handleTechniqueClick('C00081')"></td>
|
||||
<td id="C00107">C00107 Content moderation<input type="checkbox" id="C00107check" onclick="handleTechniqueClick('C00107')"></td>
|
||||
<td id="C00121">C00121 Tool transparency and literacy for channels people follow. <input type="checkbox" id="C00121check" onclick="handleTechniqueClick('C00121')"></td>
|
||||
<td id="C00158">C00158 Use training to build the resilience of at-risk populations.<input type="checkbox" id="C00158check" onclick="handleTechniqueClick('C00158')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00145">C00145 Pollute the data voids with wholesome content (Kittens! Babyshark!)<input type="checkbox" id="C00145check" onclick="handleTechniqueClick('C00145')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00024">C00024 Promote healthy narratives<input type="checkbox" id="C00024check" onclick="handleTechniqueClick('C00024')"></td>
|
||||
<td id="C00207">C00207 Run a competing disinformation campaign - not recommended<input type="checkbox" id="C00207check" onclick="handleTechniqueClick('C00207')"></td>
|
||||
<td id="C00077">C00077 Active defence: run TA03 "develop people” - not recommended<input type="checkbox" id="C00077check" onclick="handleTechniqueClick('C00077')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00082">C00082 Ground truthing as automated response to pollution<input type="checkbox" id="C00082check" onclick="handleTechniqueClick('C00082')"></td>
|
||||
<td id="C00109">C00109 De-escalation<input type="checkbox" id="C00109check" onclick="handleTechniqueClick('C00109')"></td>
|
||||
<td id="C00154">C00154 Ask media not to report false information<input type="checkbox" id="C00154check" onclick="handleTechniqueClick('C00154')"></td>
|
||||
<td id="C00169">C00169 develop a creative content hub<input type="checkbox" id="C00169check" onclick="handleTechniqueClick('C00169')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00026">C00026 Shore up democracy based messages<input type="checkbox" id="C00026check" onclick="handleTechniqueClick('C00026')"></td>
|
||||
<td id="C00222">C00222 Tabletop simulations<input type="checkbox" id="C00222check" onclick="handleTechniqueClick('C00222')"></td>
|
||||
<td id="C00093">C00093 Influencer code of conduct<input type="checkbox" id="C00093check" onclick="handleTechniqueClick('C00093')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00084">C00084 Modify disinformation narratives, and rebroadcast them<input type="checkbox" id="C00084check" onclick="handleTechniqueClick('C00084')"></td>
|
||||
<td id="C00110">C00110 Monetize centrist SEO by subsidizing the difference in greater clicks towards extremist content<input type="checkbox" id="C00110check" onclick="handleTechniqueClick('C00110')"></td>
|
||||
<td id="C00188">C00188 Newsroom/Journalist training to counter SEO influence<input type="checkbox" id="C00188check" onclick="handleTechniqueClick('C00188')"></td>
|
||||
<td id="C00178">C00178 Fill information voids with non-disinformation content<input type="checkbox" id="C00178check" onclick="handleTechniqueClick('C00178')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00027">C00027 Create culture of civility<input type="checkbox" id="C00027check" onclick="handleTechniqueClick('C00027')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00155">C00155 Ban incident actors from funding sites<input type="checkbox" id="C00155check" onclick="handleTechniqueClick('C00155')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00085">C00085 Mute content<input type="checkbox" id="C00085check" onclick="handleTechniqueClick('C00085')"></td>
|
||||
<td id="C00111">C00111 Present sympathetic views of opposite side<input type="checkbox" id="C00111check" onclick="handleTechniqueClick('C00111')"></td>
|
||||
<td id="C00193">C00193 promotion of a “higher standard of journalism”<input type="checkbox" id="C00193check" onclick="handleTechniqueClick('C00193')"></td>
|
||||
<td id="C00195">C00195 Redirect searches away from disinformation or extremist content <input type="checkbox" id="C00195check" onclick="handleTechniqueClick('C00195')"></td>
|
||||
<td id="C00120">C00120 Open dialogue about design of platforms to produce different outcomes<input type="checkbox" id="C00120check" onclick="handleTechniqueClick('C00120')"></td>
|
||||
<td id="C00182">C00182 malware detection/quarantine/deletion<input type="checkbox" id="C00182check" onclick="handleTechniqueClick('C00182')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00073">C00073 Inoculate populations through media literacy training<input type="checkbox" id="C00073check" onclick="handleTechniqueClick('C00073')"></td>
|
||||
<td id="C00024">C00024 Promote healthy narratives<input type="checkbox" id="C00024check" onclick="handleTechniqueClick('C00024')"></td>
|
||||
<td id="C00156">C00156 Better tell your country or organization story<input type="checkbox" id="C00156check" onclick="handleTechniqueClick('C00156')"></td>
|
||||
<td id="C00077">C00077 Active defence: run TA03 "develop people” - not recommended<input type="checkbox" id="C00077check" onclick="handleTechniqueClick('C00077')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00160">C00160 find and train influencers<input type="checkbox" id="C00160check" onclick="handleTechniqueClick('C00160')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00082">C00082 Ground truthing as automated response to pollution<input type="checkbox" id="C00082check" onclick="handleTechniqueClick('C00082')"></td>
|
||||
<td id="C00217">C00217 Registries alert when large batches of newsy URLs get registered together<input type="checkbox" id="C00217check" onclick="handleTechniqueClick('C00217')"></td>
|
||||
<td id="C00121">C00121 Tool transparency and literacy for channels people follow. <input type="checkbox" id="C00121check" onclick="handleTechniqueClick('C00121')"></td>
|
||||
<td id="C00200">C00200 Respected figure (influencer) disavows misinfo<input type="checkbox" id="C00200check" onclick="handleTechniqueClick('C00200')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00026">C00026 Shore up democracy based messages<input type="checkbox" id="C00026check" onclick="handleTechniqueClick('C00026')"></td>
|
||||
<td id="C00164">C00164 compatriot policy<input type="checkbox" id="C00164check" onclick="handleTechniqueClick('C00164')"></td>
|
||||
<td id="C00093">C00093 Influencer code of conduct<input type="checkbox" id="C00093check" onclick="handleTechniqueClick('C00093')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00084">C00084 Modify disinformation narratives, and rebroadcast them<input type="checkbox" id="C00084check" onclick="handleTechniqueClick('C00084')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00136">C00136 Microtarget most likely targets then send them countermessages<input type="checkbox" id="C00136check" onclick="handleTechniqueClick('C00136')"></td>
|
||||
<td id="C00211">C00211 Use humorous counter-narratives<input type="checkbox" id="C00211check" onclick="handleTechniqueClick('C00211')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00027">C00027 Create culture of civility<input type="checkbox" id="C00027check" onclick="handleTechniqueClick('C00027')"></td>
|
||||
<td id="C00169">C00169 develop a creative content hub<input type="checkbox" id="C00169check" onclick="handleTechniqueClick('C00169')"></td>
|
||||
<td id="C00133">C00133 Deplatform Account*<input type="checkbox" id="C00133check" onclick="handleTechniqueClick('C00133')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00085">C00085 Mute content<input type="checkbox" id="C00085check" onclick="handleTechniqueClick('C00085')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00154">C00154 Ask media not to report false information<input type="checkbox" id="C00154check" onclick="handleTechniqueClick('C00154')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00073">C00073 Inoculate populations through media literacy training<input type="checkbox" id="C00073check" onclick="handleTechniqueClick('C00073')"></td>
|
||||
<td id="C00207">C00207 Run a competing disinformation campaign - not recommended<input type="checkbox" id="C00207check" onclick="handleTechniqueClick('C00207')"></td>
|
||||
<td id="C00155">C00155 Ban incident actors from funding sites<input type="checkbox" id="C00155check" onclick="handleTechniqueClick('C00155')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00086">C00086 Distract from noise with addictive content<input type="checkbox" id="C00086check" onclick="handleTechniqueClick('C00086')"></td>
|
||||
<td id="C00195">C00195 Redirect Method<input type="checkbox" id="C00195check" onclick="handleTechniqueClick('C00195')"></td>
|
||||
<td id="C00203">C00203 Stop offering press credentials to propaganda outlets<input type="checkbox" id="C00203check" onclick="handleTechniqueClick('C00203')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00184">C00184 Media exposure<input type="checkbox" id="C00184check" onclick="handleTechniqueClick('C00184')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00096">C00096 Strengthen institutions that are always truth tellers<input type="checkbox" id="C00096check" onclick="handleTechniqueClick('C00096')"></td>
|
||||
<td id="C00222">C00222 Tabletop simulations<input type="checkbox" id="C00222check" onclick="handleTechniqueClick('C00222')"></td>
|
||||
<td id="C00160">C00160 find and train influencers<input type="checkbox" id="C00160check" onclick="handleTechniqueClick('C00160')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00087">C00087 Make more noise than the disinformation<input type="checkbox" id="C00087check" onclick="handleTechniqueClick('C00087')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00188">C00188 Newsroom/Journalist training to counter influence moves<input type="checkbox" id="C00188check" onclick="handleTechniqueClick('C00188')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00111">C00111 Reduce polarisation by connecting and presenting sympathetic renditions of opposite views<input type="checkbox" id="C00111check" onclick="handleTechniqueClick('C00111')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00189">C00189 Ensure that platforms are taking down flagged accounts<input type="checkbox" id="C00189check" onclick="handleTechniqueClick('C00189')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00087">C00087 Make more noise than the disinformation<input type="checkbox" id="C00087check" onclick="handleTechniqueClick('C00087')"></td>
|
||||
<td id="C00196">C00196 Include the role of social media in the regulatory framework for media<input type="checkbox" id="C00196check" onclick="handleTechniqueClick('C00196')"></td>
|
||||
<td id="C00091">C00091 Honeypot social community<input type="checkbox" id="C00091check" onclick="handleTechniqueClick('C00091')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00193">C00193 promotion of a “higher standard of journalism”<input type="checkbox" id="C00193check" onclick="handleTechniqueClick('C00193')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00151">C00151 “fight in the light”<input type="checkbox" id="C00151check" onclick="handleTechniqueClick('C00151')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00197">C00197 remove suspicious accounts<input type="checkbox" id="C00197check" onclick="handleTechniqueClick('C00197')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00094">C00094 Force full disclosure on corporate sponsor of research<input type="checkbox" id="C00094check" onclick="handleTechniqueClick('C00094')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00204">C00204 Strengthen local media<input type="checkbox" id="C00204check" onclick="handleTechniqueClick('C00204')"></td>
|
||||
<td id="C00190">C00190 open engagement with civil society<input type="checkbox" id="C00190check" onclick="handleTechniqueClick('C00190')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
@ -264,13 +292,27 @@ function handleTechniqueClick(box) {
|
||||
<tr>
|
||||
<td id="C00153">C00153 Take pre-emptive action against actors' infrastructure<input type="checkbox" id="C00153check" onclick="handleTechniqueClick('C00153')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00197">C00197 remove suspicious accounts<input type="checkbox" id="C00197check" onclick="handleTechniqueClick('C00197')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00091">C00091 Honeypot social community<input type="checkbox" id="C00091check" onclick="handleTechniqueClick('C00091')"></td>
|
||||
<td id="C00214">C00214 Create policy that makes social media police disinformation<input type="checkbox" id="C00214check" onclick="handleTechniqueClick('C00214')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00194">C00194 Provide an alternative to Russian information by expanding and improving local content.<input type="checkbox" id="C00194check" onclick="handleTechniqueClick('C00194')"></td>
|
||||
<td id="C00106">C00106 Click-bait centrist content<input type="checkbox" id="C00106check" onclick="handleTechniqueClick('C00106')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00158">C00158 Use training to build the resilience of at-risk populations<input type="checkbox" id="C00158check" onclick="handleTechniqueClick('C00158')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00107">C00107 Content moderation<input type="checkbox" id="C00107check" onclick="handleTechniqueClick('C00107')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
@ -281,60 +323,32 @@ function handleTechniqueClick(box) {
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00094">C00094 Force full disclosure on corporate sponsor of research<input type="checkbox" id="C00094check" onclick="handleTechniqueClick('C00094')"></td>
|
||||
<td id="C00215">C00215 Use fraud legislation to clean up social media<input type="checkbox" id="C00215check" onclick="handleTechniqueClick('C00215')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00200">C00200 Respected figure (influencer) disavows misinfo<input type="checkbox" id="C00200check" onclick="handleTechniqueClick('C00200')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00161">C00161 Coalition Building and Third-Party Inducements:<input type="checkbox" id="C00161check" onclick="handleTechniqueClick('C00161')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00142">C00142 Platform adds warning label and decision point when sharing content<input type="checkbox" id="C00142check" onclick="handleTechniqueClick('C00142')"></td>
|
||||
<td id="C00217">C00217 Registries alert when large batches of newsy URLs get registered together<input type="checkbox" id="C00217check" onclick="handleTechniqueClick('C00217')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00211">C00211 Use humorous counter-narratives<input type="checkbox" id="C00211check" onclick="handleTechniqueClick('C00211')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00170">C00170 elevate information as a critical domain of statecraft<input type="checkbox" id="C00170check" onclick="handleTechniqueClick('C00170')"></td>
|
||||
<td id="C00161">C00161 Coalition Building with stakeholders and Third-Party Inducements<input type="checkbox" id="C00161check" onclick="handleTechniqueClick('C00161')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00165">C00165 Limit access to alterable documents<input type="checkbox" id="C00165check" onclick="handleTechniqueClick('C00165')"></td>
|
||||
<td id="C00165">C00165 Ensure integrity of official documents<input type="checkbox" id="C00165check" onclick="handleTechniqueClick('C00165')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00212">C00212 build public resilence by making civil society more vibrant<input type="checkbox" id="C00212check" onclick="handleTechniqueClick('C00212')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00174">C00174 Create a healthier news environment<input type="checkbox" id="C00174check" onclick="handleTechniqueClick('C00174')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00167">C00167 Deploy Information and Narrative-Building in Service of Statecraft<input type="checkbox" id="C00167check" onclick="handleTechniqueClick('C00167')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00218">C00218 Censorship<input type="checkbox" id="C00218check" onclick="handleTechniqueClick('C00218')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00176">C00176 Improve Coordination amongst stakeholders: public and private<input type="checkbox" id="C00176check" onclick="handleTechniqueClick('C00176')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00171">C00171 social media content take-downs<input type="checkbox" id="C00171check" onclick="handleTechniqueClick('C00171')"></td>
|
||||
@ -346,21 +360,7 @@ function handleTechniqueClick(box) {
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00205">C00205 strong dialogue between the federal government and private sector to encourage better reporting<input type="checkbox" id="C00205check" onclick="handleTechniqueClick('C00205')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td id="C00172">C00172 social media page removal<input type="checkbox" id="C00172check" onclick="handleTechniqueClick('C00172')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00220">C00220 Develop a monitoring and intelligence plan<input type="checkbox" id="C00220check" onclick="handleTechniqueClick('C00220')"></td>
|
||||
<td id="C00170">C00170 elevate information as a critical domain of statecraft<input type="checkbox" id="C00170check" onclick="handleTechniqueClick('C00170')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
@ -374,7 +374,7 @@ function handleTechniqueClick(box) {
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00221">C00221 Run a disinformation red team, and design mitigation factors<input type="checkbox" id="C00221check" onclick="handleTechniqueClick('C00221')"></td>
|
||||
<td id="C00174">C00174 Create a healthier news environment<input type="checkbox" id="C00174check" onclick="handleTechniqueClick('C00174')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
@ -388,6 +388,146 @@ function handleTechniqueClick(box) {
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00176">C00176 Improve Coordination amongst stakeholders: public and private<input type="checkbox" id="C00176check" onclick="handleTechniqueClick('C00176')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00190">C00190 open engagement with civil society<input type="checkbox" id="C00190check" onclick="handleTechniqueClick('C00190')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00194">C00194 Provide an alternative to disinformation content by expanding and improving local content<input type="checkbox" id="C00194check" onclick="handleTechniqueClick('C00194')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00196">C00196 Include the role of social media in the regulatory framework for media<input type="checkbox" id="C00196check" onclick="handleTechniqueClick('C00196')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00205">C00205 strong dialogue between the federal government and private sector to encourage better reporting<input type="checkbox" id="C00205check" onclick="handleTechniqueClick('C00205')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00212">C00212 build public resilience by making civil society more vibrant<input type="checkbox" id="C00212check" onclick="handleTechniqueClick('C00212')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00214">C00214 Create policy that makes social media police disinformation<input type="checkbox" id="C00214check" onclick="handleTechniqueClick('C00214')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00215">C00215 Use fraud legislation to clean up social media<input type="checkbox" id="C00215check" onclick="handleTechniqueClick('C00215')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00220">C00220 Develop a monitoring and intelligence plan<input type="checkbox" id="C00220check" onclick="handleTechniqueClick('C00220')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00221">C00221 Run a disinformation red team, and design mitigation factors<input type="checkbox" id="C00221check" onclick="handleTechniqueClick('C00221')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="C00223">C00223 Strengthen Trust in social media platforms<input type="checkbox" id="C00223check" onclick="handleTechniqueClick('C00223')"></td>
|
||||
<td bgcolor=white> </td>
|
||||
<td bgcolor=white> </td>
|
||||
@ -406,162 +546,161 @@ function handleTechniqueClick(box) {
|
||||
</table>
|
||||
<hr>
|
||||
<ul>
|
||||
<li id="C00006text" style="display:none">C00006: Charge for social media</li>
|
||||
<li id="C00006text" style="display:none">C00006: Censorship</li>
|
||||
<li id="C00009text" style="display:none">C00009: Educate high profile influencers on best practices</li>
|
||||
<li id="C00034text" style="display:none">C00034: Create more friction at account creation</li>
|
||||
<li id="C00047text" style="display:none">C00047: Coordinated inauthentics</li>
|
||||
<li id="C00065text" style="display:none">C00065: Reduce political targeting</li>
|
||||
<li id="C00014text" style="display:none">C00014: Real-time updates to fact-checking database</li>
|
||||
<li id="C00097text" style="display:none">C00097: Require use of verified identities to contribute to poll or comment</li>
|
||||
<li id="C00112text" style="display:none">C00112: "Prove they are not an op!"</li>
|
||||
<li id="C00089text" style="display:none">C00089: Throttle number of forwards</li>
|
||||
<li id="C00129text" style="display:none">C00129: Use banking to cut off access </li>
|
||||
<li id="C00100text" style="display:none">C00100: Hashtag jacking</li>
|
||||
<li id="C00109text" style="display:none">C00109: Dampen Emotional Reaction</li>
|
||||
<li id="C00131text" style="display:none">C00131: Seize and analyse botnet servers</li>
|
||||
<li id="C00090text" style="display:none">C00090: Fake engagement system</li>
|
||||
<li id="C00008text" style="display:none">C00008: Create shared fact-checking database</li>
|
||||
<li id="C00006text" style="display:none">C00006: Censorship</li>
|
||||
<li id="C00011text" style="display:none">C00011: Media literacy. Games to identify fake news</li>
|
||||
<li id="C00036text" style="display:none">C00036: Infiltrate the in-group to discredit leaders (divide)</li>
|
||||
<li id="C00052text" style="display:none">C00052: Infiltrate platforms</li>
|
||||
<li id="C00066text" style="display:none">C00066: Co-opt a hashtag and drown it out (hijack it back)</li>
|
||||
<li id="C00032text" style="display:none">C00032: Hijack content and link to truth- based info</li>
|
||||
<li id="C00098text" style="display:none">C00098: Revocation of "verified"</li>
|
||||
<li id="C00113text" style="display:none">C00113: Debunk and defuse a fake expert / credentials. Attack audience quality of fake expert</li>
|
||||
<li id="C00122text" style="display:none">C00122: Content moderation. Censorship?</li>
|
||||
<li id="C00130text" style="display:none">C00130: Mentorship: elders, youth, credit. Learn vicariously.</li>
|
||||
<li id="C00133text" style="display:none">C00133: Deplatform Account*</li>
|
||||
<li id="C00140text" style="display:none">C00140: "Bomb" link shorteners with lots of calls</li>
|
||||
<li id="C00010text" style="display:none">C00010: Enhanced privacy regulation for social media</li>
|
||||
<li id="C00097text" style="display:none">C00097: Require use of verified identities to contribute to poll or comment</li>
|
||||
<li id="C00112text" style="display:none">C00112: "Prove they are not an op!"</li>
|
||||
<li id="C00122text" style="display:none">C00122: Content moderation</li>
|
||||
<li id="C00138text" style="display:none">C00138: Spam domestic actors with lawsuits</li>
|
||||
<li id="C00137text" style="display:none">C00137: Pollute the AB-testing data feeds</li>
|
||||
<li id="C00008text" style="display:none">C00008: Create shared fact-checking database</li>
|
||||
<li id="C00028text" style="display:none">C00028: Make information provenance available</li>
|
||||
<li id="C00040text" style="display:none">C00040: third party verification for people</li>
|
||||
<li id="C00053text" style="display:none">C00053: Delete old accounts / Remove unused social media accounts</li>
|
||||
<li id="C00216text" style="display:none">C00216: Use advertiser controls to stem flow of funds to bad actors</li>
|
||||
<li id="C00130text" style="display:none">C00130: Mentorship: elders, youth, credit. Learn vicariously.</li>
|
||||
<li id="C00071text" style="display:none">C00071: Block source of pollution</li>
|
||||
<li id="C00099text" style="display:none">C00099: Strengthen verification methods</li>
|
||||
<li id="C00114text" style="display:none">C00114: Don't engage with payloads</li>
|
||||
<li id="C00123text" style="display:none">C00123: Bot control</li>
|
||||
<li id="C00135text" style="display:none">C00135: Deplatform message groups and/or message boards</li>
|
||||
<li id="C00147text" style="display:none">C00147: Make amplification of social media ports expire (e.g. can't like/ retweet after n days)</li>
|
||||
<li id="C00012text" style="display:none">C00012: Platform regulation</li>
|
||||
<li id="C00098text" style="display:none">C00098: Revocation of allowlisted or "verified" status</li>
|
||||
<li id="C00113text" style="display:none">C00113: Debunk and defuse a fake expert / credentials. Attack audience quality of fake expert</li>
|
||||
<li id="C00123text" style="display:none">C00123: Remove or rate limit botnets</li>
|
||||
<li id="C00139text" style="display:none">C00139: Weaponise youtube content matrices</li>
|
||||
<li id="C00140text" style="display:none">C00140: "Bomb" link shorteners with lots of calls</li>
|
||||
<li id="C00010text" style="display:none">C00010: Enhanced privacy regulation for social media</li>
|
||||
<li id="C00029text" style="display:none">C00029: Create fake website to issue counter narrative and counter narrative through physical merchandise</li>
|
||||
<li id="C00042text" style="display:none">C00042: Address truth contained in narratives</li>
|
||||
<li id="C00056text" style="display:none">C00056: Get off social media</li>
|
||||
<li id="C00072text" style="display:none">C00072: Content censorship in non-relevant domains e.g. Pinterest antivax</li>
|
||||
<li id="C00100text" style="display:none">C00100: Hashtag jacking</li>
|
||||
<li id="C00115text" style="display:none">C00115: Expose actor and intentions</li>
|
||||
<li id="C00178text" style="display:none">C00178: Fill information voids with non-disinformation content</li>
|
||||
<li id="C00072text" style="display:none">C00072: Remove non-relevant content from special interest groups – not recommended</li>
|
||||
<li id="C00099text" style="display:none">C00099: Strengthen verification methods</li>
|
||||
<li id="C00114text" style="display:none">C00114: Don't engage with payloads</li>
|
||||
<li id="C00124text" style="display:none">C00124: Don't feed the trolls</li>
|
||||
<li id="C00136text" style="display:none">C00136: Microtarget most likely targets then send them countermessages</li>
|
||||
<li id="C00143text" style="display:none">C00143: (botnet) DMCA takedown requests to waste group time</li>
|
||||
<li id="C00148text" style="display:none">C00148: Add random links to network graphs</li>
|
||||
<li id="C00013text" style="display:none">C00013: Rating framework for news</li>
|
||||
<li id="C00012text" style="display:none">C00012: Platform regulation</li>
|
||||
<li id="C00030text" style="display:none">C00030: Develop a compelling counter narrative (truth based)</li>
|
||||
<li id="C00044text" style="display:none">C00044: Keep people from posting to social media immediately</li>
|
||||
<li id="C00059text" style="display:none">C00059: Verification of project before posting (counters funding campaigns)</li>
|
||||
<li id="C00074text" style="display:none">C00074: Identify identical content and mass deplatform</li>
|
||||
<li id="C00101text" style="display:none">C00101: Create participant friction</li>
|
||||
<li id="C00116text" style="display:none">C00116: Provide proof of involvement</li>
|
||||
<li id="C00125text" style="display:none">C00125: Prepare the population with pre-announcements</li>
|
||||
<li id="C00137text" style="display:none">C00137: Pollute the AB-testing data feeds</li>
|
||||
<li id="C00216text" style="display:none">C00216: Use advertiser controls to stem flow of funds to bad actors</li>
|
||||
<li id="C00074text" style="display:none">C00074: Identify and delete or rate limit identical content</li>
|
||||
<li id="C00101text" style="display:none">C00101: Create friction by rate-limiting engagement</li>
|
||||
<li id="C00115text" style="display:none">C00115: Expose actor and intentions</li>
|
||||
<li id="C00125text" style="display:none">C00125: Prebunking</li>
|
||||
<li id="C00145text" style="display:none">C00145: Pollute the data voids with wholesome content (Kittens! Babyshark!)</li>
|
||||
<li id="C00149text" style="display:none">C00149: Poison the monitoring & evaluation data</li>
|
||||
<li id="C00016text" style="display:none">C00016: Censorship - not recommended</li>
|
||||
<li id="C00013text" style="display:none">C00013: Rating framework for news</li>
|
||||
<li id="C00031text" style="display:none">C00031: Dilute the core narrative - create multiple permutations, target / amplify</li>
|
||||
<li id="C00046text" style="display:none">C00046: Marginalise and discredit extremist groups</li>
|
||||
<li id="C00062text" style="display:none">C00062: Free open library sources worldwide</li>
|
||||
<li id="C00075text" style="display:none">C00075: normalise language</li>
|
||||
<li id="C00102text" style="display:none">C00102: Make repeat voting harder</li>
|
||||
<li id="C00117text" style="display:none">C00117: Downgrade de-amplify label promote counter to disinformation</li>
|
||||
<li id="C00116text" style="display:none">C00116: Provide proof of involvement</li>
|
||||
<li id="C00126text" style="display:none">C00126: Social media amber alert</li>
|
||||
<li id="C00138text" style="display:none">C00138: Spam domestic actors with lawsuits</li>
|
||||
<li id="C00017text" style="display:none">C00017: Repair broken social connections</li>
|
||||
<li id="C00060text" style="display:none">C00060: Legal action against for-profit engagement factories</li>
|
||||
<li id="C00048text" style="display:none">C00048: Name and Shame Influencers</li>
|
||||
<li id="C00162text" style="display:none">C00162: collect data/map constellations of Russian“civil society”. Unravel/target the Potemkin villages</li>
|
||||
<li id="C00135text" style="display:none">C00135: Deplatform message groups and/or message boards</li>
|
||||
<li id="C00076text" style="display:none">C00076: Prohibit images in political discourse channels</li>
|
||||
<li id="C00103text" style="display:none">C00103: Create a bot that engages / distract trolls</li>
|
||||
<li id="C00118text" style="display:none">C00118: Repurpose images with new text</li>
|
||||
<li id="C00117text" style="display:none">C00117: Downgrade / de-amplify so message is seen by fewer people</li>
|
||||
<li id="C00128text" style="display:none">C00128: Create friction by marking content with ridicule or other "decelerants"</li>
|
||||
<li id="C00139text" style="display:none">C00139: Weaponise youtube content matrices</li>
|
||||
<li id="C00019text" style="display:none">C00019: Reduce effect of division-enablers</li>
|
||||
<li id="C00070text" style="display:none">C00070: Block access to disinformation resources</li>
|
||||
<li id="C00051text" style="display:none">C00051: Counter social engineering training</li>
|
||||
<li id="C00162text" style="display:none">C00162: Unravel/target the Potemkin villages</li>
|
||||
<li id="C00078text" style="display:none">C00078: Change Search Algorithms for Disinformation Content</li>
|
||||
<li id="C00105text" style="display:none">C00105: Buy more advertising than the adversary to shift influence and algorithms</li>
|
||||
<li id="C00119text" style="display:none">C00119: Engage payload and debunk. Provide link to facts. </li>
|
||||
<li id="C00151text" style="display:none">C00151: “fight in the light”</li>
|
||||
<li id="C00143text" style="display:none">C00143: (botnet) DMCA takedown requests to waste group time</li>
|
||||
<li id="C00118text" style="display:none">C00118: Repurpose images with new text</li>
|
||||
<li id="C00129text" style="display:none">C00129: Use banking to cut off access </li>
|
||||
<li id="C00021text" style="display:none">C00021: Encourage in-person communication</li>
|
||||
<li id="C00092text" style="display:none">C00092: Reputation scores for social media influencers</li>
|
||||
<li id="C00092text" style="display:none">C00092: Establish a truth teller reputation score for influencers</li>
|
||||
<li id="C00058text" style="display:none">C00058: Report crowdfunder as violator</li>
|
||||
<li id="C00172text" style="display:none">C00172: social media source removal</li>
|
||||
<li id="C00080text" style="display:none">C00080: Create competing narrative</li>
|
||||
<li id="C00106text" style="display:none">C00106: Click-bait centrist content</li>
|
||||
<li id="C00120text" style="display:none">C00120: Open dialogue about design of platforms to produce different outcomes</li>
|
||||
<li id="C00156text" style="display:none">C00156: Better tell the U.S., NATO, and EU story.</li>
|
||||
<li id="C00144text" style="display:none">C00144: Buy out troll farm employees / offer them jobs</li>
|
||||
<li id="C00110text" style="display:none">C00110: Monetize centrist SEO by subsidizing the difference in greater clicks towards extremist content</li>
|
||||
<li id="C00119text" style="display:none">C00119: Engage payload and debunk. Provide link to facts. </li>
|
||||
<li id="C00147text" style="display:none">C00147: Make amplification of social media ports expire (e.g. can't like/ retweet after n days)</li>
|
||||
<li id="C00022text" style="display:none">C00022: Innoculate. Positive campaign to promote feeling of safety</li>
|
||||
<li id="C00164text" style="display:none">C00164: compatriot policy</li>
|
||||
<li id="C00144text" style="display:none">C00144: Buy out troll farm employees / offer them jobs</li>
|
||||
<li id="C00067text" style="display:none">C00067: Denigrate the recipient/ project (of online funding)</li>
|
||||
<li id="C00203text" style="display:none">C00203: Stop offering press credentials to propaganda outlets</li>
|
||||
<li id="C00081text" style="display:none">C00081: Highlight flooding and noise, and explain motivations</li>
|
||||
<li id="C00107text" style="display:none">C00107: Content moderation</li>
|
||||
<li id="C00121text" style="display:none">C00121: Tool transparency and literacy for channels people follow. </li>
|
||||
<li id="C00158text" style="display:none">C00158: Use training to build the resilience of at-risk populations.</li>
|
||||
<li id="C00145text" style="display:none">C00145: Pollute the data voids with wholesome content (Kittens! Babyshark!)</li>
|
||||
<li id="C00195text" style="display:none">C00195: Redirect searches away from disinformation or extremist content </li>
|
||||
<li id="C00120text" style="display:none">C00120: Open dialogue about design of platforms to produce different outcomes</li>
|
||||
<li id="C00182text" style="display:none">C00182: malware detection/quarantine/deletion</li>
|
||||
<li id="C00024text" style="display:none">C00024: Promote healthy narratives</li>
|
||||
<li id="C00207text" style="display:none">C00207: Run a competing disinformation campaign - not recommended</li>
|
||||
<li id="C00156text" style="display:none">C00156: Better tell your country or organization story</li>
|
||||
<li id="C00077text" style="display:none">C00077: Active defence: run TA03 "develop people” - not recommended</li>
|
||||
<li id="C00082text" style="display:none">C00082: Ground truthing as automated response to pollution</li>
|
||||
<li id="C00109text" style="display:none">C00109: De-escalation</li>
|
||||
<li id="C00154text" style="display:none">C00154: Ask media not to report false information</li>
|
||||
<li id="C00169text" style="display:none">C00169: develop a creative content hub</li>
|
||||
<li id="C00217text" style="display:none">C00217: Registries alert when large batches of newsy URLs get registered together</li>
|
||||
<li id="C00121text" style="display:none">C00121: Tool transparency and literacy for channels people follow. </li>
|
||||
<li id="C00200text" style="display:none">C00200: Respected figure (influencer) disavows misinfo</li>
|
||||
<li id="C00026text" style="display:none">C00026: Shore up democracy based messages</li>
|
||||
<li id="C00222text" style="display:none">C00222: Tabletop simulations</li>
|
||||
<li id="C00164text" style="display:none">C00164: compatriot policy</li>
|
||||
<li id="C00093text" style="display:none">C00093: Influencer code of conduct</li>
|
||||
<li id="C00084text" style="display:none">C00084: Modify disinformation narratives, and rebroadcast them</li>
|
||||
<li id="C00110text" style="display:none">C00110: Monetize centrist SEO by subsidizing the difference in greater clicks towards extremist content</li>
|
||||
<li id="C00188text" style="display:none">C00188: Newsroom/Journalist training to counter SEO influence</li>
|
||||
<li id="C00178text" style="display:none">C00178: Fill information voids with non-disinformation content</li>
|
||||
<li id="C00136text" style="display:none">C00136: Microtarget most likely targets then send them countermessages</li>
|
||||
<li id="C00211text" style="display:none">C00211: Use humorous counter-narratives</li>
|
||||
<li id="C00027text" style="display:none">C00027: Create culture of civility</li>
|
||||
<li id="C00155text" style="display:none">C00155: Ban incident actors from funding sites</li>
|
||||
<li id="C00169text" style="display:none">C00169: develop a creative content hub</li>
|
||||
<li id="C00133text" style="display:none">C00133: Deplatform Account*</li>
|
||||
<li id="C00085text" style="display:none">C00085: Mute content</li>
|
||||
<li id="C00111text" style="display:none">C00111: Present sympathetic views of opposite side</li>
|
||||
<li id="C00193text" style="display:none">C00193: promotion of a “higher standard of journalism”</li>
|
||||
<li id="C00182text" style="display:none">C00182: malware detection/quarantine/deletion</li>
|
||||
<li id="C00154text" style="display:none">C00154: Ask media not to report false information</li>
|
||||
<li id="C00073text" style="display:none">C00073: Inoculate populations through media literacy training</li>
|
||||
<li id="C00160text" style="display:none">C00160: find and train influencers</li>
|
||||
<li id="C00207text" style="display:none">C00207: Run a competing disinformation campaign - not recommended</li>
|
||||
<li id="C00155text" style="display:none">C00155: Ban incident actors from funding sites</li>
|
||||
<li id="C00086text" style="display:none">C00086: Distract from noise with addictive content</li>
|
||||
<li id="C00195text" style="display:none">C00195: Redirect Method</li>
|
||||
<li id="C00203text" style="display:none">C00203: Stop offering press credentials to propaganda outlets</li>
|
||||
<li id="C00184text" style="display:none">C00184: Media exposure</li>
|
||||
<li id="C00096text" style="display:none">C00096: Strengthen institutions that are always truth tellers</li>
|
||||
<li id="C00189text" style="display:none">C00189: Ensure that platforms are taking down flagged accounts</li>
|
||||
<li id="C00222text" style="display:none">C00222: Tabletop simulations</li>
|
||||
<li id="C00160text" style="display:none">C00160: find and train influencers</li>
|
||||
<li id="C00087text" style="display:none">C00087: Make more noise than the disinformation</li>
|
||||
<li id="C00196text" style="display:none">C00196: Include the role of social media in the regulatory framework for media</li>
|
||||
<li id="C00204text" style="display:none">C00204: Strengthen local media</li>
|
||||
<li id="C00190text" style="display:none">C00190: open engagement with civil society</li>
|
||||
<li id="C00153text" style="display:none">C00153: Take pre-emptive action against actors' infrastructure</li>
|
||||
<li id="C00197text" style="display:none">C00197: remove suspicious accounts</li>
|
||||
<li id="C00188text" style="display:none">C00188: Newsroom/Journalist training to counter influence moves</li>
|
||||
<li id="C00111text" style="display:none">C00111: Reduce polarisation by connecting and presenting sympathetic renditions of opposite views</li>
|
||||
<li id="C00189text" style="display:none">C00189: Ensure that platforms are taking down flagged accounts</li>
|
||||
<li id="C00091text" style="display:none">C00091: Honeypot social community</li>
|
||||
<li id="C00214text" style="display:none">C00214: Create policy that makes social media police disinformation</li>
|
||||
<li id="C00194text" style="display:none">C00194: Provide an alternative to Russian information by expanding and improving local content.</li>
|
||||
<li id="C00159text" style="display:none">C00159: Have a disinformation response plan</li>
|
||||
<li id="C00193text" style="display:none">C00193: promotion of a “higher standard of journalism”</li>
|
||||
<li id="C00151text" style="display:none">C00151: “fight in the light”</li>
|
||||
<li id="C00197text" style="display:none">C00197: remove suspicious accounts</li>
|
||||
<li id="C00094text" style="display:none">C00094: Force full disclosure on corporate sponsor of research</li>
|
||||
<li id="C00215text" style="display:none">C00215: Use fraud legislation to clean up social media</li>
|
||||
<li id="C00200text" style="display:none">C00200: Respected figure (influencer) disavows misinfo</li>
|
||||
<li id="C00161text" style="display:none">C00161: Coalition Building and Third-Party Inducements:</li>
|
||||
<li id="C00204text" style="display:none">C00204: Strengthen local media</li>
|
||||
<li id="C00153text" style="display:none">C00153: Take pre-emptive action against actors' infrastructure</li>
|
||||
<li id="C00106text" style="display:none">C00106: Click-bait centrist content</li>
|
||||
<li id="C00158text" style="display:none">C00158: Use training to build the resilience of at-risk populations</li>
|
||||
<li id="C00107text" style="display:none">C00107: Content moderation</li>
|
||||
<li id="C00159text" style="display:none">C00159: Have a disinformation response plan</li>
|
||||
<li id="C00142text" style="display:none">C00142: Platform adds warning label and decision point when sharing content</li>
|
||||
<li id="C00217text" style="display:none">C00217: Registries alert when large batches of newsy URLs get registered together</li>
|
||||
<li id="C00211text" style="display:none">C00211: Use humorous counter-narratives</li>
|
||||
<li id="C00170text" style="display:none">C00170: elevate information as a critical domain of statecraft</li>
|
||||
<li id="C00165text" style="display:none">C00165: Limit access to alterable documents</li>
|
||||
<li id="C00212text" style="display:none">C00212: build public resilence by making civil society more vibrant</li>
|
||||
<li id="C00174text" style="display:none">C00174: Create a healthier news environment</li>
|
||||
<li id="C00161text" style="display:none">C00161: Coalition Building with stakeholders and Third-Party Inducements</li>
|
||||
<li id="C00165text" style="display:none">C00165: Ensure integrity of official documents</li>
|
||||
<li id="C00167text" style="display:none">C00167: Deploy Information and Narrative-Building in Service of Statecraft</li>
|
||||
<li id="C00218text" style="display:none">C00218: Censorship</li>
|
||||
<li id="C00176text" style="display:none">C00176: Improve Coordination amongst stakeholders: public and private</li>
|
||||
<li id="C00171text" style="display:none">C00171: social media content take-downs</li>
|
||||
<li id="C00205text" style="display:none">C00205: strong dialogue between the federal government and private sector to encourage better reporting</li>
|
||||
<li id="C00172text" style="display:none">C00172: social media page removal</li>
|
||||
<li id="C00220text" style="display:none">C00220: Develop a monitoring and intelligence plan</li>
|
||||
<li id="C00170text" style="display:none">C00170: elevate information as a critical domain of statecraft</li>
|
||||
<li id="C00202text" style="display:none">C00202: Set data 'honeytraps'</li>
|
||||
<li id="C00221text" style="display:none">C00221: Run a disinformation red team, and design mitigation factors</li>
|
||||
<li id="C00174text" style="display:none">C00174: Create a healthier news environment</li>
|
||||
<li id="C00219text" style="display:none">C00219: Add metadata to content that’s out of the control of disinformation creators</li>
|
||||
<li id="C00176text" style="display:none">C00176: Improve Coordination amongst stakeholders: public and private</li>
|
||||
<li id="C00190text" style="display:none">C00190: open engagement with civil society</li>
|
||||
<li id="C00194text" style="display:none">C00194: Provide an alternative to disinformation content by expanding and improving local content</li>
|
||||
<li id="C00196text" style="display:none">C00196: Include the role of social media in the regulatory framework for media</li>
|
||||
<li id="C00205text" style="display:none">C00205: strong dialogue between the federal government and private sector to encourage better reporting</li>
|
||||
<li id="C00212text" style="display:none">C00212: build public resilience by making civil society more vibrant</li>
|
||||
<li id="C00214text" style="display:none">C00214: Create policy that makes social media police disinformation</li>
|
||||
<li id="C00215text" style="display:none">C00215: Use fraud legislation to clean up social media</li>
|
||||
<li id="C00220text" style="display:none">C00220: Develop a monitoring and intelligence plan</li>
|
||||
<li id="C00221text" style="display:none">C00221: Run a disinformation red team, and design mitigation factors</li>
|
||||
<li id="C00223text" style="display:none">C00223: Strengthen Trust in social media platforms</li>
|
||||
</ul>
|
||||
|
||||
|
||||
@ -1,16 +1,23 @@
|
||||
# Counter C00006: Charge for social media
|
||||
# Counter C00006: Censorship
|
||||
|
||||
* **Summary**: Include a paid-for privacy option, e.g. pay Facebook for an option of them not collecting your personal information. There are examples of this not work, e.g. most people don’t use proton mail etc.
|
||||
* **Summary**: Alter and/or block the publication/dissemination of adversary controlled information
|
||||
|
||||
* **Playbooks**:
|
||||
|
||||
* **Metatechnique**: M004 - friction
|
||||
* **Metatechnique**: M005 - removal
|
||||
|
||||
* **Resources needed:**
|
||||
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A031 social media platform adminstrator](../actors/A031.md) | Social Media Company |
|
||||
| [A033 social media platform owner](../actors/A033.md) | Social Media Company |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,6 +25,31 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0009 Create fake experts](../techniques/T0009.md) |
|
||||
| [T0055 Use hashtag](../techniques/T0055.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
| [T0054 Twitter bots amplify](../techniques/T0054.md) |
|
||||
| [T0052 Tertiary sites amplify news](../techniques/T0052.md) |
|
||||
| [T0049 Flooding](../techniques/T0049.md) |
|
||||
| [T0051 Fabricate social media comment](../techniques/T0051.md) |
|
||||
| [T0056 Dedicated channels disseminate information pollution](../techniques/T0056.md) |
|
||||
| [T0043 Use SMS/ WhatsApp/ Chat apps](../techniques/T0043.md) |
|
||||
| [T0045 Use fake experts](../techniques/T0045.md) |
|
||||
| [T0026 Create fake research](../techniques/T0026.md) |
|
||||
| [T0058 Legacy web content](../techniques/T0058.md) |
|
||||
| [T0024 Create fake videos and images](../techniques/T0024.md) |
|
||||
| [T0021 Memes](../techniques/T0021.md) |
|
||||
| [T0022 Conspiracy narratives](../techniques/T0022.md) |
|
||||
| [T0018 Paid targeted ads](../techniques/T0018.md) |
|
||||
| [T0017 Promote online funding](../techniques/T0017.md) |
|
||||
| [T0016 Clickbait](../techniques/T0016.md) |
|
||||
| [T0015 Create hashtag](../techniques/T0015.md) |
|
||||
| [T0014 Create funding campaigns](../techniques/T0014.md) |
|
||||
| [T0013 Create fake websites](../techniques/T0013.md) |
|
||||
| [T0007 Create fake Social Media Profiles / Pages / Groups](../techniques/T0007.md) |
|
||||
| [T0008 Create fake or imposter news sites](../techniques/T0008.md) |
|
||||
| [T0025 Leak altered documents](../techniques/T0025.md) |
|
||||
| [T0057 Organise remote rallies and events](../techniques/T0057.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A007 factchecker](../actors/A007.md) | Civil Society |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,13 @@
|
||||
* **Belongs to tactic stage**: TA02
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A006 educator](../actors/A006.md) | Civil Society |
|
||||
| [A016 influencer](../actors/A016.md) | General Public |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A020 policy maker](../actors/A020.md) | Government |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -13,6 +13,14 @@
|
||||
* **Belongs to tactic stage**: TA02
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A006 educator](../actors/A006.md) | Civil Society |
|
||||
| [A024 developer](../actors/A024.md) | Other Tech Company |
|
||||
| [A026 games designer](../actors/A026.md) | Other Tech Company |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,14 @@
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A018 government ](../actors/A018.md) | Government |
|
||||
| [A020 policy maker](../actors/A020.md) | Government |
|
||||
| [A033 social media platform owner](../actors/A033.md) | Social Media Company |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A007 factchecker](../actors/A007.md) | Civil Society |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A021 media organisation](../actors/A021.md) | Media |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -16,6 +16,11 @@
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -14,6 +14,11 @@ Playbook 4: Establish facilitation guidelines for "civil" interaction.
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -13,6 +13,11 @@ This could be used to adjust upvote weight via a trust factor of people and orga
|
||||
* **Belongs to tactic stage**: TA02
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -15,6 +15,11 @@ Secondary Objective:
|
||||
* **Belongs to tactic stage**: TA02
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA02
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -12,6 +12,11 @@ Playbook 2: Dissect narrative, piecemeal the components and then amplify
|
||||
* **Belongs to tactic stage**: TA02
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -12,6 +12,11 @@ Playbook 2: Hijack (man in the middle) redirect from bad content to good content
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA03
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -13,6 +13,11 @@
|
||||
* **Belongs to tactic stage**: TA03
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -13,6 +13,11 @@
|
||||
* **Belongs to tactic stage**: TA03
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA03
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -12,6 +12,12 @@ Unless account is de-anonymized and advertised as automated messaging
|
||||
* **Belongs to tactic stage**: TA03
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A031 social media platform adminstrator](../actors/A031.md) | Social Media Company |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA03
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA04
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA03
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA03
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A006 educator](../actors/A006.md) | Civil Society |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA04
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A004 activist](../actors/A004.md) | Civil Society |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,14 @@
|
||||
* **Belongs to tactic stage**: TA04
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A012 account owner](../actors/A012.md) | General Public |
|
||||
| [A028 platform administrator](../actors/A028.md) | Other Tech Company |
|
||||
| [A031 social media platform adminstrator](../actors/A031.md) | Social Media Company |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA04
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA03
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA04
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA02
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A020 policy maker](../actors/A020.md) | Government |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA04
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA05
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A020 policy maker](../actors/A020.md) | Government |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA05
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA03
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -19,6 +19,11 @@ T0046 - Search Engine Optimization: Sub-optimal website performance affect its s
|
||||
* **Belongs to tactic stage**: TA02
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -34,7 +39,7 @@ T0046 - Search Engine Optimization: Sub-optimal website performance affect its s
|
||||
| [T0052 Tertiary sites amplify news](../techniques/T0052.md) |
|
||||
| [T0055 Use hashtag](../techniques/T0055.md) |
|
||||
| [T0057 Organise remote rallies and events](../techniques/T0057.md) |
|
||||
| [T0061 Sell merchandising](../techniques/T0061.md) |
|
||||
| [T0056 Dedicated channels disseminate information pollution](../techniques/T0056.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
# Counter C00072: Content censorship in non-relevant domains e.g. Pinterest antivax
|
||||
# Counter C00072: Remove non-relevant content from special interest groups – not recommended
|
||||
|
||||
* **Summary**:
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,7 +23,18 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0019 Generate information pollution](../techniques/T0019.md) |
|
||||
| [T0010 Cultivate ignorant agents](../techniques/T0010.md) |
|
||||
| [T0044 Seed distortions](../techniques/T0044.md) |
|
||||
| [T0021 Memes](../techniques/T0021.md) |
|
||||
| [T0022 Conspiracy narratives](../techniques/T0022.md) |
|
||||
| [T0023 Distort facts](../techniques/T0023.md) |
|
||||
| [T0026 Create fake research](../techniques/T0026.md) |
|
||||
| [T0025 Leak altered documents](../techniques/T0025.md) |
|
||||
| [T0027 Adapt existing narratives](../techniques/T0027.md) |
|
||||
| [T0039 Bait legitimate influencers](../techniques/T0039.md) |
|
||||
| [T0055 Use hashtag](../techniques/T0055.md) |
|
||||
| [T0049 Flooding](../techniques/T0049.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,19 @@
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A005 community group](../actors/A005.md) | Civil Society |
|
||||
| [A006 educator](../actors/A006.md) | Civil Society |
|
||||
| [A008 library](../actors/A008.md) | Civil Society |
|
||||
| [A009 NGO](../actors/A009.md) | Civil Society |
|
||||
| [A010 religious organisation ](../actors/A010.md) | Civil Society |
|
||||
| [A017 coordinating body](../actors/A017.md) | Government |
|
||||
| [A021 media organisation](../actors/A021.md) | Media |
|
||||
| [A032 social media platform outreach ](../actors/A032.md) | Social Media Company |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,9 +31,24 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0012 Use concealment](../techniques/T0012.md) |
|
||||
| [T0019 Generate information pollution](../techniques/T0019.md) |
|
||||
| [T0016 Clickbait](../techniques/T0016.md) |
|
||||
| [T0040 Demand unsurmountable proof](../techniques/T0040.md) |
|
||||
| [T0039 Bait legitimate influencers](../techniques/T0039.md) |
|
||||
| [T0027 Adapt existing narratives](../techniques/T0027.md) |
|
||||
| [T0025 Leak altered documents](../techniques/T0025.md) |
|
||||
| [T0026 Create fake research](../techniques/T0026.md) |
|
||||
| [T0023 Distort facts](../techniques/T0023.md) |
|
||||
| [T0022 Conspiracy narratives](../techniques/T0022.md) |
|
||||
| [T0021 Memes](../techniques/T0021.md) |
|
||||
| [T0044 Seed distortions](../techniques/T0044.md) |
|
||||
| [T0045 Use fake experts](../techniques/T0045.md) |
|
||||
| [T0045 Use fake experts](../techniques/T0045.md) |
|
||||
| [T0010 Cultivate ignorant agents](../techniques/T0010.md) |
|
||||
| [T0056 Dedicated channels disseminate information pollution](../techniques/T0056.md) |
|
||||
| [T0056 Dedicated channels disseminate information pollution](../techniques/T0056.md) |
|
||||
| [T0019 Generate information pollution](../techniques/T0019.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
| [T0060 Continue to amplify](../techniques/T0060.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
# Counter C00074: Identify identical content and mass deplatform
|
||||
# Counter C00074: Identify and delete or rate limit identical content
|
||||
|
||||
* **Summary**:
|
||||
|
||||
@ -17,6 +17,13 @@ Playbook 5: Use basic web scraping techniques, Google dorks, etc to identify sim
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A028 platform administrator](../actors/A028.md) | Other Tech Company |
|
||||
| [A031 social media platform adminstrator](../actors/A031.md) | Social Media Company |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -24,9 +31,22 @@ Playbook 5: Use basic web scraping techniques, Google dorks, etc to identify sim
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0019 Generate information pollution](../techniques/T0019.md) |
|
||||
| [T0021 Memes](../techniques/T0021.md) |
|
||||
| [T0022 Conspiracy narratives](../techniques/T0022.md) |
|
||||
| [T0026 Create fake research](../techniques/T0026.md) |
|
||||
| [T0025 Leak altered documents](../techniques/T0025.md) |
|
||||
| [T0043 Use SMS/ WhatsApp/ Chat apps](../techniques/T0043.md) |
|
||||
| [T0050 Cheerleading domestic social media ops](../techniques/T0050.md) |
|
||||
| [T0051 Fabricate social media comment](../techniques/T0051.md) |
|
||||
| [T0049 Flooding](../techniques/T0049.md) |
|
||||
| [T0052 Tertiary sites amplify news](../techniques/T0052.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
| [T0054 Twitter bots amplify](../techniques/T0054.md) |
|
||||
| [T0055 Use hashtag](../techniques/T0055.md) |
|
||||
| [T0057 Organise remote rallies and events](../techniques/T0057.md) |
|
||||
| [T0061 Sell merchandising](../techniques/T0061.md) |
|
||||
| [T0060 Continue to amplify](../techniques/T0060.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,8 +23,11 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0016 Clickbait](../techniques/T0016.md) |
|
||||
| [T0018 Paid targeted ads](../techniques/T0018.md) |
|
||||
| [T0039 Bait legitimate influencers](../techniques/T0039.md) |
|
||||
| [T0044 Seed distortions](../techniques/T0044.md) |
|
||||
| [T0021 Memes](../techniques/T0021.md) |
|
||||
| [T0024 Create fake videos and images](../techniques/T0024.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA03
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,8 +23,11 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0044 Seed distortions](../techniques/T0044.md) |
|
||||
| [T0046 Search Engine Optimization](../techniques/T0046.md) |
|
||||
| [T0021 Memes](../techniques/T0021.md) |
|
||||
| [T0056 Dedicated channels disseminate information pollution](../techniques/T0056.md) |
|
||||
| [T0052 Tertiary sites amplify news](../techniques/T0052.md) |
|
||||
| [T0060 Continue to amplify](../techniques/T0060.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,6 +23,11 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0003 Leverage Existing Narratives](../techniques/T0003.md) |
|
||||
| [T0004 Competing Narratives](../techniques/T0004.md) |
|
||||
| [T0028 Create competing narratives](../techniques/T0028.md) |
|
||||
| [T0022 Conspiracy narratives](../techniques/T0022.md) |
|
||||
| [T0027 Adapt existing narratives](../techniques/T0027.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,6 +23,19 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0003 Leverage Existing Narratives](../techniques/T0003.md) |
|
||||
| [T0004 Competing Narratives](../techniques/T0004.md) |
|
||||
| [T0028 Create competing narratives](../techniques/T0028.md) |
|
||||
| [T0006 Create Master Narratives](../techniques/T0006.md) |
|
||||
| [T0022 Conspiracy narratives](../techniques/T0022.md) |
|
||||
| [T0023 Distort facts](../techniques/T0023.md) |
|
||||
| [T0026 Create fake research](../techniques/T0026.md) |
|
||||
| [T0027 Adapt existing narratives](../techniques/T0027.md) |
|
||||
| [T0044 Seed distortions](../techniques/T0044.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
| [T0054 Twitter bots amplify](../techniques/T0054.md) |
|
||||
| [T0055 Use hashtag](../techniques/T0055.md) |
|
||||
| [T0056 Dedicated channels disseminate information pollution](../techniques/T0056.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,6 +23,21 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0002 Facilitate State Propaganda](../techniques/T0002.md) |
|
||||
| [T0003 Leverage Existing Narratives](../techniques/T0003.md) |
|
||||
| [T0004 Competing Narratives](../techniques/T0004.md) |
|
||||
| [T0028 Create competing narratives](../techniques/T0028.md) |
|
||||
| [T0006 Create Master Narratives](../techniques/T0006.md) |
|
||||
| [T0022 Conspiracy narratives](../techniques/T0022.md) |
|
||||
| [T0023 Distort facts](../techniques/T0023.md) |
|
||||
| [T0025 Leak altered documents](../techniques/T0025.md) |
|
||||
| [T0026 Create fake research](../techniques/T0026.md) |
|
||||
| [T0027 Adapt existing narratives](../techniques/T0027.md) |
|
||||
| [T0044 Seed distortions](../techniques/T0044.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
| [T0054 Twitter bots amplify](../techniques/T0054.md) |
|
||||
| [T0055 Use hashtag](../techniques/T0055.md) |
|
||||
| [T0056 Dedicated channels disseminate information pollution](../techniques/T0056.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -19,10 +24,12 @@
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0002 Facilitate State Propaganda](../techniques/T0002.md) |
|
||||
| [T0003 Leverage Existing Narratives](../techniques/T0003.md) |
|
||||
| [T0004 Competing Narratives](../techniques/T0004.md) |
|
||||
| [T0028 Create competing narratives](../techniques/T0028.md) |
|
||||
| [T0006 Create Master Narratives](../techniques/T0006.md) |
|
||||
| [T0015 Create hashtag](../techniques/T0015.md) |
|
||||
| [T0017 Promote online funding](../techniques/T0017.md) |
|
||||
| [T0057 Organise remote rallies and events](../techniques/T0057.md) |
|
||||
| [T0022 Conspiracy narratives](../techniques/T0022.md) |
|
||||
| [T0027 Adapt existing narratives](../techniques/T0027.md) |
|
||||
| [T0059 Play the long game](../techniques/T0059.md) |
|
||||
|
||||
|
||||
|
||||
@ -13,6 +13,11 @@ Online archives of content (archives of websites, social media profiles, media,
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -20,6 +25,26 @@ Online archives of content (archives of websites, social media profiles, media,
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0008 Create fake or imposter news sites](../techniques/T0008.md) |
|
||||
| [T0057 Organise remote rallies and events](../techniques/T0057.md) |
|
||||
| [T0056 Dedicated channels disseminate information pollution](../techniques/T0056.md) |
|
||||
| [T0055 Use hashtag](../techniques/T0055.md) |
|
||||
| [T0054 Twitter bots amplify](../techniques/T0054.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
| [T0052 Tertiary sites amplify news](../techniques/T0052.md) |
|
||||
| [T0051 Fabricate social media comment](../techniques/T0051.md) |
|
||||
| [T0049 Flooding](../techniques/T0049.md) |
|
||||
| [T0044 Seed distortions](../techniques/T0044.md) |
|
||||
| [T0045 Use fake experts](../techniques/T0045.md) |
|
||||
| [T0026 Create fake research](../techniques/T0026.md) |
|
||||
| [T0024 Create fake videos and images](../techniques/T0024.md) |
|
||||
| [T0025 Leak altered documents](../techniques/T0025.md) |
|
||||
| [T0021 Memes](../techniques/T0021.md) |
|
||||
| [T0022 Conspiracy narratives](../techniques/T0022.md) |
|
||||
| [T0017 Promote online funding](../techniques/T0017.md) |
|
||||
| [T0007 Create fake Social Media Profiles / Pages / Groups](../techniques/T0007.md) |
|
||||
| [T0061 Sell merchandising](../techniques/T0061.md) |
|
||||
| [T0060 Continue to amplify](../techniques/T0060.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -13,6 +13,11 @@ Note: This sounds eerlily like many Reddit communities where the most upvoted co
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -20,6 +25,13 @@ Note: This sounds eerlily like many Reddit communities where the most upvoted co
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0044 Seed distortions](../techniques/T0044.md) |
|
||||
| [T0050 Cheerleading domestic social media ops](../techniques/T0050.md) |
|
||||
| [T0051 Fabricate social media comment](../techniques/T0051.md) |
|
||||
| [T0049 Flooding](../techniques/T0049.md) |
|
||||
| [T0054 Twitter bots amplify](../techniques/T0054.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
| [T0055 Use hashtag](../techniques/T0055.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,6 +23,17 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0039 Bait legitimate influencers](../techniques/T0039.md) |
|
||||
| [T0044 Seed distortions](../techniques/T0044.md) |
|
||||
| [T0048 Cow online opinion leaders](../techniques/T0048.md) |
|
||||
| [T0050 Cheerleading domestic social media ops](../techniques/T0050.md) |
|
||||
| [T0051 Fabricate social media comment](../techniques/T0051.md) |
|
||||
| [T0049 Flooding](../techniques/T0049.md) |
|
||||
| [T0052 Tertiary sites amplify news](../techniques/T0052.md) |
|
||||
| [T0054 Twitter bots amplify](../techniques/T0054.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
| [T0055 Use hashtag](../techniques/T0055.md) |
|
||||
| [T0056 Dedicated channels disseminate information pollution](../techniques/T0056.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -8,7 +8,12 @@
|
||||
|
||||
* **Resources needed:**
|
||||
|
||||
* **Belongs to tactic stage**: TA09
|
||||
* **Belongs to tactic stage**: TA07
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
@ -18,7 +23,9 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0021 Memes](../techniques/T0021.md) |
|
||||
| [T0049 Flooding](../techniques/T0049.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
| [T0054 Twitter bots amplify](../techniques/T0054.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA12
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -19,6 +24,8 @@
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0020 Trial content](../techniques/T0020.md) |
|
||||
| [T0062 Behaviour changes](../techniques/T0062.md) |
|
||||
| [T0063 Message reach](../techniques/T0063.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,7 +23,11 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0019 Generate information pollution](../techniques/T0019.md) |
|
||||
| [T0062 Behaviour changes](../techniques/T0062.md) |
|
||||
| [T0063 Message reach](../techniques/T0063.md) |
|
||||
| [T0054 Twitter bots amplify](../techniques/T0054.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
| [T0049 Flooding](../techniques/T0049.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
# Counter C00092: Reputation scores for social media influencers
|
||||
# Counter C00092: Establish a truth teller reputation score for influencers
|
||||
|
||||
* **Summary**: Includes "Establish a truth teller reputation score for influencers” and “Reputation scores for social media users”. Influencers are individuals or accounts with many followers.
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA02
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A001 data scientist ](../actors/A001.md) | All |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,13 +24,14 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0010 Cultivate ignorant agents](../techniques/T0010.md) |
|
||||
| [T0023 Distort facts](../techniques/T0023.md) |
|
||||
| [T0024 Create fake videos and images](../techniques/T0024.md) |
|
||||
| [T0025 Leak altered documents](../techniques/T0025.md) |
|
||||
| [T0026 Create fake research](../techniques/T0026.md) |
|
||||
| [T0039 Bait legitimate influencers](../techniques/T0039.md) |
|
||||
| [T0045 Use fake experts](../techniques/T0045.md) |
|
||||
| [T0047 Muzzle social media as a political force](../techniques/T0047.md) |
|
||||
| [T0044 Seed distortions](../techniques/T0044.md) |
|
||||
| [T0054 Twitter bots amplify](../techniques/T0054.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
| [T0056 Dedicated channels disseminate information pollution](../techniques/T0056.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA03
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -19,6 +24,11 @@
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0022 Conspiracy narratives](../techniques/T0022.md) |
|
||||
| [T0027 Adapt existing narratives](../techniques/T0027.md) |
|
||||
| [T0026 Create fake research](../techniques/T0026.md) |
|
||||
| [T0024 Create fake videos and images](../techniques/T0024.md) |
|
||||
| [T0023 Distort facts](../techniques/T0023.md) |
|
||||
| [T0025 Leak altered documents](../techniques/T0025.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA07
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A031 social media platform adminstrator](../actors/A031.md) | Social Media Company |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -19,6 +25,12 @@
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0029 Manipulate online polls](../techniques/T0029.md) |
|
||||
| [T0030 Backstop personas](../techniques/T0030.md) |
|
||||
| [T0045 Use fake experts](../techniques/T0045.md) |
|
||||
| [T0009 Create fake experts](../techniques/T0009.md) |
|
||||
| [T0007 Create fake Social Media Profiles / Pages / Groups](../techniques/T0007.md) |
|
||||
| [T0054 Twitter bots amplify](../techniques/T0054.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
# Counter C00098: Revocation of "verified"
|
||||
# Counter C00098: Revocation of allowlisted or "verified" status
|
||||
|
||||
* **Summary**:
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA07
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A031 social media platform adminstrator](../actors/A031.md) | Social Media Company |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -19,6 +25,7 @@
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0038 Twitter](../techniques/T0038.md) |
|
||||
| [T0011 Hijack legitimate account](../techniques/T0011.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA07
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A031 social media platform adminstrator](../actors/A031.md) | Social Media Company |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -19,6 +25,10 @@
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0030 Backstop personas](../techniques/T0030.md) |
|
||||
| [T0045 Use fake experts](../techniques/T0045.md) |
|
||||
| [T0009 Create fake experts](../techniques/T0009.md) |
|
||||
| [T0008 Create fake or imposter news sites](../techniques/T0008.md) |
|
||||
| [T0007 Create fake Social Media Profiles / Pages / Groups](../techniques/T0007.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -8,7 +8,12 @@
|
||||
|
||||
* **Resources needed:**
|
||||
|
||||
* **Belongs to tactic stage**: TA07
|
||||
* **Belongs to tactic stage**: TA08
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
@ -18,6 +23,7 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0055 Use hashtag](../techniques/T0055.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
# Counter C00101: Create participant friction
|
||||
# Counter C00101: Create friction by rate-limiting engagement
|
||||
|
||||
* **Summary**:
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA07
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A031 social media platform adminstrator](../actors/A031.md) | Social Media Company |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -19,6 +25,9 @@
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0029 Manipulate online polls](../techniques/T0029.md) |
|
||||
| [T0049 Flooding](../techniques/T0049.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
| [T0054 Twitter bots amplify](../techniques/T0054.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA07
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A031 social media platform adminstrator](../actors/A031.md) | Social Media Company |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
# Counter C00103: Create a bot that engages / distract trolls
|
||||
|
||||
* **Summary**: Use T00030 backstop personas
|
||||
* **Summary**:
|
||||
|
||||
* **Playbooks**:
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA07
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A024 developer](../actors/A024.md) | Other Tech Company |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -19,6 +25,9 @@
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0029 Manipulate online polls](../techniques/T0029.md) |
|
||||
| [T0062 Behaviour changes](../techniques/T0062.md) |
|
||||
| [T0063 Message reach](../techniques/T0063.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA07
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A023 adtech provider](../actors/A023.md) | Other Tech Company |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,6 +24,8 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0016 Clickbait](../techniques/T0016.md) |
|
||||
| [T0018 Paid targeted ads](../techniques/T0018.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -8,7 +8,12 @@
|
||||
|
||||
* **Resources needed:**
|
||||
|
||||
* **Belongs to tactic stage**: TA07
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
@ -18,6 +23,7 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0016 Clickbait](../techniques/T0016.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -8,7 +8,12 @@
|
||||
|
||||
* **Resources needed:**
|
||||
|
||||
* **Belongs to tactic stage**: TA07
|
||||
* **Belongs to tactic stage**: TA06
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
@ -18,8 +23,26 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0032 Reddit](../techniques/T0032.md) |
|
||||
| [T0035 Pinterest](../techniques/T0035.md) |
|
||||
| [T0009 Create fake experts](../techniques/T0009.md) |
|
||||
| [T0022 Conspiracy narratives](../techniques/T0022.md) |
|
||||
| [T0001 5Ds (dismiss, distort, distract, dismay, divide)](../techniques/T0001.md) |
|
||||
| [T0057 Organise remote rallies and events](../techniques/T0057.md) |
|
||||
| [T0055 Use hashtag](../techniques/T0055.md) |
|
||||
| [T0045 Use fake experts](../techniques/T0045.md) |
|
||||
| [T0026 Create fake research](../techniques/T0026.md) |
|
||||
| [T0024 Create fake videos and images](../techniques/T0024.md) |
|
||||
| [T0025 Leak altered documents](../techniques/T0025.md) |
|
||||
| [T0021 Memes](../techniques/T0021.md) |
|
||||
| [T0018 Paid targeted ads](../techniques/T0018.md) |
|
||||
| [T0017 Promote online funding](../techniques/T0017.md) |
|
||||
| [T0016 Clickbait](../techniques/T0016.md) |
|
||||
| [T0015 Create hashtag](../techniques/T0015.md) |
|
||||
| [T0014 Create funding campaigns](../techniques/T0014.md) |
|
||||
| [T0013 Create fake websites](../techniques/T0013.md) |
|
||||
| [T0007 Create fake Social Media Profiles / Pages / Groups](../techniques/T0007.md) |
|
||||
| [T0008 Create fake or imposter news sites](../techniques/T0008.md) |
|
||||
| [T0027 Adapt existing narratives](../techniques/T0027.md) |
|
||||
| [T0061 Sell merchandising](../techniques/T0061.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
# Counter C00109: De-escalation
|
||||
# Counter C00109: Dampen Emotional Reaction
|
||||
|
||||
* **Summary**:
|
||||
|
||||
@ -8,7 +8,12 @@
|
||||
|
||||
* **Resources needed:**
|
||||
|
||||
* **Belongs to tactic stage**: TA07
|
||||
* **Belongs to tactic stage**: TA09
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA07
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,6 +23,8 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0018 Paid targeted ads](../techniques/T0018.md) |
|
||||
| [T0046 Search Engine Optimization](../techniques/T0046.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
# Counter C00111: Present sympathetic views of opposite side
|
||||
# Counter C00111: Reduce polarisation by connecting and presenting sympathetic renditions of opposite views
|
||||
|
||||
* **Summary**:
|
||||
|
||||
@ -8,7 +8,14 @@
|
||||
|
||||
* **Resources needed:**
|
||||
|
||||
* **Belongs to tactic stage**: TA07
|
||||
* **Belongs to tactic stage**: TA01
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A013 content creator ](../actors/A013.md) | General Public |
|
||||
| [A021 media organisation](../actors/A021.md) | Media |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
@ -18,6 +25,7 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0010 Cultivate ignorant agents](../techniques/T0010.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
# Counter C00112: "Prove they are not an op!"
|
||||
|
||||
* **Summary**: This applies to the entirety of the matrix as I read this as "create awareness around the use of all of these techniques"
|
||||
* **Summary**:
|
||||
|
||||
* **Playbooks**:
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA08
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA08
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -11,6 +11,12 @@
|
||||
* **Belongs to tactic stage**: TA08
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
| [A015 general public](../actors/A015.md) | General Public |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -19,6 +25,7 @@
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0039 Bait legitimate influencers](../techniques/T0039.md) |
|
||||
| [T0048 Cow online opinion leaders](../techniques/T0048.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA08
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,12 +23,10 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0046 Search Engine Optimization](../techniques/T0046.md) |
|
||||
| [T0041 Deny involvement](../techniques/T0041.md) |
|
||||
| [T0048 Cow online opinion leaders](../techniques/T0048.md) |
|
||||
| [T0052 Tertiary sites amplify news](../techniques/T0052.md) |
|
||||
| [T0053 Twitter trolls amplify and manipulate](../techniques/T0053.md) |
|
||||
| [T0054 Twitter bots amplify](../techniques/T0054.md) |
|
||||
| [T0055 Use hashtag](../techniques/T0055.md) |
|
||||
| [T0056 Dedicated channels disseminate information pollution](../techniques/T0056.md) |
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA08
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
# Counter C00117: Downgrade de-amplify label promote counter to disinformation
|
||||
# Counter C00117: Downgrade / de-amplify so message is seen by fewer people
|
||||
|
||||
* **Summary**:
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA08
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -19,6 +24,14 @@
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0046 Search Engine Optimization](../techniques/T0046.md) |
|
||||
| [T0022 Conspiracy narratives](../techniques/T0022.md) |
|
||||
| [T0021 Memes](../techniques/T0021.md) |
|
||||
| [T0025 Leak altered documents](../techniques/T0025.md) |
|
||||
| [T0024 Create fake videos and images](../techniques/T0024.md) |
|
||||
| [T0026 Create fake research](../techniques/T0026.md) |
|
||||
| [T0045 Use fake experts](../techniques/T0045.md) |
|
||||
| [T0044 Seed distortions](../techniques/T0044.md) |
|
||||
| [T0060 Continue to amplify](../techniques/T0060.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA08
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -19,6 +24,8 @@
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0044 Seed distortions](../techniques/T0044.md) |
|
||||
| [T0021 Memes](../techniques/T0021.md) |
|
||||
| [T0024 Create fake videos and images](../techniques/T0024.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA08
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
@ -18,7 +23,14 @@
|
||||
|
||||
| Counters these Techniques |
|
||||
| ------------------------- |
|
||||
| [T0022 Conspiracy narratives](../techniques/T0022.md) |
|
||||
| [T0021 Memes](../techniques/T0021.md) |
|
||||
| [T0025 Leak altered documents](../techniques/T0025.md) |
|
||||
| [T0024 Create fake videos and images](../techniques/T0024.md) |
|
||||
| [T0026 Create fake research](../techniques/T0026.md) |
|
||||
| [T0045 Use fake experts](../techniques/T0045.md) |
|
||||
| [T0044 Seed distortions](../techniques/T0044.md) |
|
||||
| [T0060 Continue to amplify](../techniques/T0060.md) |
|
||||
|
||||
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@
|
||||
* **Belongs to tactic stage**: TA08
|
||||
|
||||
|
||||
| Actors | Sectors |
|
||||
| ------ | ------- |
|
||||
|
||||
|
||||
|
||||
| Counters these Tactics |
|
||||
| ---------------------- |
|
||||
|
||||
|
||||
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
x
Ссылка в новой задаче
Block a user