Welcome to TiddlyWiki created by Jeremy Ruston; Copyright © 2004-2007 Jeremy Ruston, Copyright © 2007-2011 UnaMesa Association
/* |License|Creative Commons Attribution-ShareAlike 3.0|
|Author|Lewcid/Saq Imtiaz|
|Version|undefined|
*/
// /%
config.formatters.unshift({name:"annotations",match:"\\(\\(",lookaheadRegExp:/\(\((.*?)\((\^?)((?:.|\n)*?)\)\)\)/g,handler:function(w){
this.lookaheadRegExp.lastIndex=w.matchStart;
var _2=this.lookaheadRegExp.exec(w.source);
if(_2&&_2.index==w.matchStart){
var _3=createTiddlyElement(w.output,"span",null,"annosub",_2[1]);
_3.anno=_2[3];
if(_2[2]){
_3.subject=_2[1];
}
_3.onmouseover=this.onmouseover;
_3.onmouseout=this.onmouseout;
_3.ondblclick=this.onmouseout;
w.nextMatch=_2.index+_2[0].length;
}
},onmouseover:function(e){
popup=createTiddlyElement(document.body,"div",null,"anno");
this.popup=popup;
if(this.subject){
wikify("!"+this.subject+"\n",popup);
}
wikify(this.anno,popup);
addClass(this,"annosubover");
Popup.place(this,popup,{x:25,y:7});
},onmouseout:function(e){
removeNode(this.popup);
this.popup=null;
removeClass(this,"annosubover");
}});
setStylesheet(".anno{position:absolute;border:2px solid #000;background-color:#DFDFFF; color:#000;padding:0.5em;max-width:80em;width:expression(document.body.clientWidth > (255/12) *parseInt(document.body.currentStyle.fontSize)?'15em':'auto' );}\n"+".anno h1, .anno h2{margin-top:0;color:#000;}\n"+".annosub{background:#ccc;}\n"+".annosubover{z-index:25; background-color:#DFDFFF;cursor:help;}\n","AnnotationStyles");
// %/
/* |License|https://tiddlytools.com/Classic/#LegalStatements|
|Author|[[Eric Shulman|https://tiddlytools.com/Classic/]]|
|Version|2.1.4 (2011.02.16)|
*/
//{{{
version.extensions.BreadcrumbsPlugin= {major: 2, minor: 1, revision: 4, date: new Date(2011,2,16)};
var defaults={
chkShowBreadcrumbs: true,
chkReorderBreadcrumbs: true,
chkCreateDefaultBreadcrumbs: true,
chkShowStartupBreadcrumbs: false,
chkBreadcrumbsReverse: false,
chkBreadcrumbsLimit: false,
txtBreadcrumbsLimit: 5,
chkBreadcrumbsLimitOpenTiddlers:false,
txtBreadcrumbsLimitOpenTiddlers:3,
chkBreadcrumbsHideHomeLink: false,
chkBreadcrumbsSave: false,
txtBreadcrumbsHomeSeparator: ' | ',
txtBreadcrumbsCrumbSeparator: ' > '
};
for (var id in defaults) if (config.options[id]===undefined)
config.options[id]=defaults[id];
config.macros.breadcrumbs = {
crumbs: [], // the list of current breadcrumbs
askMsg: "Save current breadcrumbs before clearing?\n"
+"Press OK to save, or CANCEL to continue without saving.",
saveMsg: 'Enter the name of a tiddler in which to save the current breadcrumbs',
saveTitle: 'SavedBreadcrumbs',
handler: function(place,macroName,params,wikifier,paramString,tiddler) {
var area=createTiddlyElement(place,"span",null,"breadCrumbs",null);
area.setAttribute("homeSep",params[0]||config.options.txtBreadcrumbsHomeSeparator);
area.setAttribute("crumbSep",params[1]||config.options.txtBreadcrumbsCrumbSeparator);
this.render(area);
},
add: function (title) {
var thisCrumb = title;
var ind = this.crumbs.indexOf(thisCrumb);
if(ind === -1)
this.crumbs.push(thisCrumb);
else if (config.options.chkReorderBreadcrumbs)
this.crumbs.push(this.crumbs.splice(ind,1)[0]); // reorder crumbs
else
this.crumbs=this.crumbs.slice(0,ind+1); // trim crumbs
if (config.options.chkBreadcrumbsLimitOpenTiddlers)
this.limitOpenTiddlers();
this.refresh();
return false;
},
getAreas: function() {
var crumbAreas=[];
// find all DIVs with classname=="breadCrumbs"
var all=document.getElementsByTagName("*");
for (var i=0; i<all.length; i++)
try{ if (hasClass(all[i],"breadCrumbs")) crumbAreas.push(all[i]);} catch(e) {;}
// or, find single DIV w/fixed ID (backward compatibility)
var byID=document.getElementById("breadCrumbs")
if (byID && !hasClass(byID,"breadCrumbs")) crumbAreas.push(byID);
if (!crumbAreas.length && config.options.chkCreateDefaultBreadcrumbs) {
// no crumbs display .. create one
var defaultArea = createTiddlyElement(null,"span",null,"breadCrumbs",null);
defaultArea.style.display= "none";
var targetArea= document.getElementById("tiddlerDisplay");
targetArea.parentNode.insertBefore(defaultArea,targetArea);
crumbAreas.push(defaultArea);
}
return crumbAreas;
},
refresh: function() {
var crumbAreas=this.getAreas();
for (var i=0; i<crumbAreas.length; i++) {
crumbAreas[i].style.display = config.options.chkShowBreadcrumbs?"inline":"none";
removeChildren(crumbAreas[i]);
this.render(crumbAreas[i]);
}
},
render: function(here) {
var co=config.options; var out=""
if (!co.chkBreadcrumbsHideHomeLink) {
createTiddlyButton(here,"- Accueil",null,this.home,"tiddlyLink tiddlyLinkExisting");
out+=here.getAttribute("homeSep")||config.options.txtBreadcrumbsHomeSeparator;
}
for (c=0; c<this.crumbs.length; c++) // remove non-existing tiddlers from crumbs
if (!store.tiddlerExists(this.crumbs[c]) && !store.isShadowTiddler(this.crumbs[c]))
this.crumbs.splice(c,1);
var count=this.crumbs.length;
if (co.chkBreadcrumbsLimit && co.txtBreadcrumbsLimit<count) count=co.txtBreadcrumbsLimit;
var list=[];
for (c=this.crumbs.length-count; c<this.crumbs.length; c++) list.push('[['+this.crumbs[c]+']]');
if (co.chkBreadcrumbsReverse) list.reverse();
out+=list.join(here.getAttribute("crumbSep")||config.options.txtBreadcrumbsCrumbSeparator);
wikify(out,here);
},
home: function() {
var cmb=config.macros.breadcrumbs;
if (config.options.chkBreadcrumbsSave && confirm(cmb.askMsg)) cmb.saveCrumbs();
story.closeAllTiddlers(); restart();
cmb.crumbs = []; var crumbAreas=cmb.getAreas();
for (var i=0; i<crumbAreas.length; i++) crumbAreas[i].style.display = "none";
return false;
},
saveCrumbs: function() {
var tid=prompt(this.saveMsg,this.saveTitle); if (!tid||!tid.length) return; // cancelled by user
var t=store.getTiddler(tid);
if(t && !confirm(config.messages.overwriteWarning.format([tid]))) return;
var who=config.options.txtUserName;
var when=new Date();
var text='[['+this.crumbs.join(']]\n[[')+']]';
var tags=t?t.tags:[]; tags.pushUnique('story');
var fields=t?t.fields:{};
store.saveTiddler(tid,tid,text,who,when,tags,fields);
story.displayTiddler(null,tid);
story.refreshTiddler(tid,null,true);
displayMessage(tid+' has been '+(t?'updated':'created'));
},
limitOpenTiddlers: function() {
var limit=config.options.txtBreadcrumbsLimitOpenTiddlers; if (limit<1) limit=1;
for (c=this.crumbs.length-1; c>=0; c--) {
var tid=this.crumbs[c];
var elem=story.getTiddler(tid);
if (elem) { // tiddler is displayed
if (limit <=0) { // display limit has been reached
if (elem.getAttribute("dirty")=="true") { // tiddler is being edited
var msg= "'"+tid+"' is currently being edited.\n\n"
+"Press OK to save and close this tiddler\n"
+"or press Cancel to leave it opened";
if (confirm(msg)) {
story.closeTiddler(tid);
}
}
else story.closeTiddler(this.crumbs[c]);
}
limit--;
}
}
}
};
//}}}
// // PreviousTiddler ('back') command and macro
//{{{
config.commands.previousTiddler = {
text: 'back',
tooltip: 'view the previous tiddler',
handler: function(event,src,title) {
var crumbs=config.macros.breadcrumbs.crumbs;
if (crumbs.length<2) config.macros.breadcrumbs.home();
else story.displayTiddler(story.findContainingTiddler(src),crumbs[crumbs.length-2]);
return false;
}
};
config.macros.previousTiddler= {
label: 'back',
prompt: 'view the previous tiddler',
handler: function(place,macroName,params,wikifier,paramString,tiddler) {
var label=params.shift(); if (!label) label=this.label;
var prompt=params.shift(); if (!prompt) prompt=this.prompt;
createTiddlyButton(place,label,prompt,function(ev){
return config.commands.previousTiddler.handler(ev,this)
});
}
}//}}}
// // HIJACKS
//{{{
// update crumbs when a tiddler is displayed
if (Story.prototype.breadCrumbs_coreDisplayTiddler==undefined)
Story.prototype.breadCrumbs_coreDisplayTiddler=Story.prototype.displayTiddler;
Story.prototype.displayTiddler = function(srcElement,tiddler) {
var title=(tiddler instanceof Tiddler)?tiddler.title:tiddler;
this.breadCrumbs_coreDisplayTiddler.apply(this,arguments);
if (!startingUp || config.options.chkShowStartupBreadcrumbs)
config.macros.breadcrumbs.add(title);
}
// update crumbs when a tiddler is deleted
if (TiddlyWiki.prototype.breadCrumbs_coreRemoveTiddler==undefined)
TiddlyWiki.prototype.breadCrumbs_coreRemoveTiddler=TiddlyWiki.prototype.removeTiddler;
TiddlyWiki.prototype.removeTiddler= function() {
this.breadCrumbs_coreRemoveTiddler.apply(this,arguments);
config.macros.breadcrumbs.refresh();
}
//}}}
/*
|Author|[[Eric Shulman|https://tiddlytools.com/Classic/]] ^^(Original: Steve Rumsby)^^|
|Version|1.5.1|
|License|https://tiddlytools.com/Classic/#LegalStatements|
|''First day of week:''<br>{{{config.options.txtCalFirstDay}}}|<<option txtCalFirstDay>>|(Monday = 0, Sunday = 6)|
|''First day of weekend:''<br>{{{config.options.txtCalStartOfWeekend}}}|<<option txtCalStartOfWeekend>>|(Monday = 0, Sunday = 6)|
<<option chkDisplayWeekNumbers>> Display week numbers //(note: Monday will be used as the start of the week)//
|''Week number display format:''<br>{{{config.options.txtWeekNumberDisplayFormat }}}|<<option txtWeekNumberDisplayFormat >>|
|''Week number link format:''<br>{{{config.options.txtWeekNumberLinkFormat }}}|<<option txtWeekNumberLinkFormat >>|
*/
//{{{
version.extensions.CalendarPlugin= { major: 1, minor: 5, revision: 1, date: new Date(2011,1,4)};
// COOKIE OPTIONS
var opts={
txtCalFirstDay: 0,
txtCalStartOfWeekend: 5,
chkDisplayWeekNumbers: false,
txtCalFirstDay: 0,
txtWeekNumberDisplayFormat: 'w0WW',
txtWeekNumberLinkFormat: 'YYYY-w0WW',
txtCalendarReminderTags: 'reminder'
};
for (var id in opts) if (config.options[id]===undefined) config.options[id]=opts[id];
// INTERNAL CONFIGURATION
config.macros.calendar = {
monthnames:['Jan.','Fev.','Mar.','Avr.','Mai.','Jun.','Jul.','Aou.','Sep.','Oct.','Nov.','Dec.'],
daynames:['Lu','Ma','Me','Je','Ve','Sa','Di'],
todaybg:'#ccccff',
weekendbg:'#c0c0c0',
monthbg:'#e0e0e0',
holidaybg:'#ffc0c0',
journalDateFmt:'DD MMM YYYY',
monthdays:[31,28,31,30,31,30,31,31,30,31,30,31],
holidays:[ ] // for customization see [[CalendarPluginConfig]]
};
//}}}
//{{{
function calendarIsHoliday(date)
{
var longHoliday = date.formatString('0DD/0MM/YYYY');
var shortHoliday = date.formatString('0DD/0MM');
for(var i = 0; i < config.macros.calendar.holidays.length; i++) {
if( config.macros.calendar.holidays[i]==longHoliday
|| config.macros.calendar.holidays[i]==shortHoliday)
return true;
}
return false;
}
//}}}
//{{{
config.macros.calendar.handler = function(place,macroName,params) {
var calendar = createTiddlyElement(place, 'table', null, 'calendar', null);
var tbody = createTiddlyElement(calendar, 'tbody');
var today = new Date();
var year = today.getYear();
if (year<1900) year+=1900;
// get journal format from SideBarOptions (ELS 5/29/06 - suggested by MartinBudden)
var text = store.getTiddlerText('SideBarOptions');
var re = new RegExp('<<(?:newJournal)([^>]*)>>','mg'); var fm = re.exec(text);
if (fm && fm[1]!=null) { var pa=fm[1].readMacroParams(); if (pa[0]) this.journalDateFmt = pa[0];}
var month=-1;
if (params[0] == 'thismonth') {
var month=today.getMonth();
} else if (params[0] == 'lastmonth') {
var month = today.getMonth()-1; if (month==-1) { month=11; year--;}
} else if (params[0] == 'nextmonth') {
var month = today.getMonth()+1; if (month>11) { month=0; year++;}
} else if (params[0]&&'+-'.indexOf(params[0].substr(0,1))!=-1) {
var month = today.getMonth()+parseInt(params[0]);
if (month>11) { year+=Math.floor(month/12); month%=12;};
if (month<0) { year+=Math.floor(month/12); month=12+month%12;}
} else if (params[0]) {
year = params[0];
if(params[1]) {
month=parseInt(params[1])-1;
if (month>11) month=11; if (month<0) month=0;
}
}
if (month!=-1) {
cacheReminders(new Date(year, month, 1, 0, 0), 31);
createCalendarOneMonth(tbody, year, month);
} else {
cacheReminders(new Date(year, 0, 1, 0, 0), 366);
createCalendarYear(tbody, year);
}
window.reminderCacheForCalendar = null;
}
//}}}
//{{{
// cache used to store reminders while the calendar is being rendered
// it will be renulled after the calendar is fully rendered.
window.reminderCacheForCalendar = null;
//}}}
//{{{
function cacheReminders(date, leadtime)
{
if (window.findTiddlersWithReminders == null) return;
window.reminderCacheForCalendar = {};
var leadtimeHash = [];
leadtimeHash [0] = 0;
leadtimeHash [1] = leadtime;
var t = findTiddlersWithReminders(date, leadtimeHash, null, 1);
for(var i = 0; i < t.length; i++) {
//just tag it in the cache, so that when we're drawing days, we can bold this one.
window.reminderCacheForCalendar[t[i]['matchedDate']] = 'reminder:' + t[i]['params']['title'];
}
}
//}}}
//{{{
function createCalendarOneMonth(calendar, year, mon)
{
var row = createTiddlyElement(calendar, 'tr');
createCalendarMonthHeader(calendar, row, config.macros.calendar.monthnames[mon]+' '+year, true, year, mon);
row = createTiddlyElement(calendar, 'tr');
createCalendarDayHeader(row, 1);
createCalendarDayRowsSingle(calendar, year, mon);
}
//}}}
//{{{
function createCalendarMonth(calendar, year, mon)
{
var row = createTiddlyElement(calendar, 'tr');
createCalendarMonthHeader(calendar, row, config.macros.calendar.monthnames[mon]+' '+ year, false, year, mon);
row = createTiddlyElement(calendar, 'tr');
createCalendarDayHeader(row, 1);
createCalendarDayRowsSingle(calendar, year, mon);
}
//}}}
//{{{
function createCalendarYear(calendar, year)
{
var row;
row = createTiddlyElement(calendar, 'tr');
var back = createTiddlyElement(row, 'td');
var backHandler = function() {
removeChildren(calendar);
createCalendarYear(calendar, parseInt(year)-1);
return false; // consume click
};
createTiddlyButton(back, '<','Previous year', backHandler);
back.align = 'center';
var yearHeader = createTiddlyElement(row, 'td', null, 'calendarYear', year);
yearHeader.align = 'center';
yearHeader.setAttribute('colSpan',config.options.chkDisplayWeekNumbers?22:19);//wn**
var fwd = createTiddlyElement(row, 'td');
var fwdHandler = function() {
removeChildren(calendar);
createCalendarYear(calendar, parseInt(year)+1);
return false; // consume click
};
createTiddlyButton(fwd, '>','Next year', fwdHandler);
fwd.align = 'center';
createCalendarMonthRow(calendar, year, 0);
createCalendarMonthRow(calendar, year, 3);
createCalendarMonthRow(calendar, year, 6);
createCalendarMonthRow(calendar, year, 9);
}
//}}}
//{{{
function createCalendarMonthRow(cal, year, mon)
{
var row = createTiddlyElement(cal, 'tr');
createCalendarMonthHeader(cal, row, config.macros.calendar.monthnames[mon], false, year, mon);
createCalendarMonthHeader(cal, row, config.macros.calendar.monthnames[mon+1], false, year, mon);
createCalendarMonthHeader(cal, row, config.macros.calendar.monthnames[mon+2], false, year, mon);
row = createTiddlyElement(cal, 'tr');
createCalendarDayHeader(row, 3);
createCalendarDayRows(cal, year, mon);
}
//}}}
//{{{
function createCalendarMonthHeader(cal, row, name, nav, year, mon)
{
var month;
if (nav) {
var back = createTiddlyElement(row, 'td');
back.align = 'center';
back.style.background = config.macros.calendar.monthbg;
var backMonHandler = function() {
var newyear = year;
var newmon = mon-1;
if(newmon == -1) { newmon = 11; newyear = parseInt(newyear)-1;}
removeChildren(cal);
cacheReminders(new Date(newyear, newmon , 1, 0, 0), 31);
createCalendarOneMonth(cal, newyear, newmon);
return false; // consume click
};
createTiddlyButton(back, '<','Previous month', backMonHandler);
month = createTiddlyElement(row, 'td', null, 'calendarMonthname')
createTiddlyLink(month,name,true);
month.setAttribute('colSpan', config.options.chkDisplayWeekNumbers?6:5);//wn**
var fwd = createTiddlyElement(row, 'td');
fwd.align = 'center';
fwd.style.background = config.macros.calendar.monthbg;
var fwdMonHandler = function() {
var newyear = year;
var newmon = mon+1;
if(newmon == 12) { newmon = 0; newyear = parseInt(newyear)+1;}
removeChildren(cal);
cacheReminders(new Date(newyear, newmon , 1, 0, 0), 31);
createCalendarOneMonth(cal, newyear, newmon);
return false; // consume click
};
createTiddlyButton(fwd, '>','Next month', fwdMonHandler);
} else {
month = createTiddlyElement(row, 'td', null, 'calendarMonthname', name)
month.setAttribute('colSpan',config.options.chkDisplayWeekNumbers?8:7);//wn**
}
month.align = 'center';
month.style.background = config.macros.calendar.monthbg;
}
//}}}
//{{{
function createCalendarDayHeader(row, num)
{
var cell;
for(var i = 0; i < num; i++) {
if (config.options.chkDisplayWeekNumbers) createTiddlyElement(row, 'td');//wn**
for(var j = 0; j < 7; j++) {
var d = j + (config.options.txtCalFirstDay - 0);
if(d > 6) d = d - 7;
cell = createTiddlyElement(row, 'td', null, null, config.macros.calendar.daynames[d]);
if(d == (config.options.txtCalStartOfWeekend-0) || d == (config.options.txtCalStartOfWeekend-0+1))
cell.style.background = config.macros.calendar.weekendbg;
}
}
}
//}}}
//{{{
function createCalendarDays(row, col, first, max, year, mon) {
var i;
if (config.options.chkDisplayWeekNumbers){
if (first<=max) {
var ww = new Date(year,mon,first);
var td=createTiddlyElement(row, 'td');//wn**
var link=createTiddlyLink(td,ww.formatString(config.options.txtWeekNumberLinkFormat),false);
link.appendChild(document.createTextNode(
ww.formatString(config.options.txtWeekNumberDisplayFormat)));
}
else createTiddlyElement(row, 'td');//wn**
}
for(i = 0; i < col; i++)
createTiddlyElement(row, 'td');
var day = first;
for(i = col; i < 7; i++) {
var d = i + (config.options.txtCalFirstDay - 0);
if(d > 6) d = d - 7;
var daycell = createTiddlyElement(row, 'td');
var isaWeekend=((d==(config.options.txtCalStartOfWeekend-0)
|| d==(config.options.txtCalStartOfWeekend-0+1))?true:false);
if(day > 0 && day <= max) {
var celldate = new Date(year, mon, day);
// ELS 10/30/05 - use <<date>> macro's showDate() function to create popup
// ELS 05/29/06 - use journalDateFmt
if (window.showDate) showDate(daycell,celldate,'popup','DD',
config.macros.calendar.journalDateFmt,true, isaWeekend);
else {
if(isaWeekend) daycell.style.background = config.macros.calendar.weekendbg;
var title = celldate.formatString(config.macros.calendar.journalDateFmt);
if(calendarIsHoliday(celldate))
daycell.style.background = config.macros.calendar.holidaybg;
var now=new Date();
if ((now-celldate>=0) && (now-celldate<86400000)) // is today?
daycell.style.background = config.macros.calendar.todaybg;
if(window.findTiddlersWithReminders == null) {
var link = createTiddlyLink(daycell, title, false);
link.appendChild(document.createTextNode(day));
} else
var button = createTiddlyButton(daycell, day, title, onClickCalendarDate);
}
}
day++;
}
}
//}}}
//{{{
// Create a pop-up containing:
// * a link to a tiddler for this date
// * a 'new tiddler' link to add a reminder for this date
// * links to current reminders for this date
// NOTE: this code is only used if [[ReminderMacros]] is installed AND [[DatePlugin]] is //not// installed.
function onClickCalendarDate(ev) { ev=ev||window.event;
var d=new Date(this.getAttribute('title')); var date=d.formatString(config.macros.calendar.journalDateFmt);
var p=Popup.create(this); if (!p) return;
createTiddlyLink(createTiddlyElement(p,'li'),date,true);
var rem='\\n\\<\\<reminder day:%0 month:%1 year:%2 title: \\>\\>';
rem=rem.format([d.getDate(),d.getMonth()+1,d.getYear()+1900]);
var cmd="<<newTiddler label:[[new reminder...]] prompt:[[add a new reminder to '%0']]"
+" title:[[%0]] text:{{store.getTiddlerText('%0','')+'%1'}} tag:%2>>";
wikify(cmd.format([date,rem,config.options.txtCalendarReminderTags]),p);
createTiddlyElement(p,'hr');
var t=findTiddlersWithReminders(d,[0,31],null,1);
for(var i=0; i<t.length; i++) {
var link=createTiddlyLink(createTiddlyElement(p,'li'), t[i].tiddler, false);
link.appendChild(document.createTextNode(t[i]['params']['title']));
}
Popup.show(); ev.cancelBubble=true; if (ev.stopPropagation) ev.stopPropagation(); return false;
}
//}}}
//{{{
function calendarMaxDays(year, mon)
{
var max = config.macros.calendar.monthdays[mon];
if(mon == 1 && (year % 4) == 0 && ((year % 100) != 0 || (year % 400) == 0)) max++;
return max;
}
//}}}
//{{{
function createCalendarDayRows(cal, year, mon)
{
var row = createTiddlyElement(cal, 'tr');
var first1 = (new Date(year, mon, 1)).getDay() -1 - (config.options.txtCalFirstDay-0);
if(first1 < 0) first1 = first1 + 7;
var day1 = -first1 + 1;
var first2 = (new Date(year, mon+1, 1)).getDay() -1 - (config.options.txtCalFirstDay-0);
if(first2 < 0) first2 = first2 + 7;
var day2 = -first2 + 1;
var first3 = (new Date(year, mon+2, 1)).getDay() -1 - (config.options.txtCalFirstDay-0);
if(first3 < 0) first3 = first3 + 7;
var day3 = -first3 + 1;
var max1 = calendarMaxDays(year, mon);
var max2 = calendarMaxDays(year, mon+1);
var max3 = calendarMaxDays(year, mon+2);
while(day1 <= max1 || day2 <= max2 || day3 <= max3) {
row = createTiddlyElement(cal, 'tr');
createCalendarDays(row, 0, day1, max1, year, mon); day1 += 7;
createCalendarDays(row, 0, day2, max2, year, mon+1); day2 += 7;
createCalendarDays(row, 0, day3, max3, year, mon+2); day3 += 7;
}
}
//}}}
//{{{
function createCalendarDayRowsSingle(cal, year, mon)
{
var row = createTiddlyElement(cal, 'tr');
var first1 = (new Date(year, mon, 1)).getDay() -1 - (config.options.txtCalFirstDay-0);
if(first1 < 0) first1 = first1+ 7;
var day1 = -first1 + 1;
var max1 = calendarMaxDays(year, mon);
while(day1 <= max1) {
row = createTiddlyElement(cal, 'tr');
createCalendarDays(row, 0, day1, max1, year, mon); day1 += 7;
}
}
//}}}
//{{{
setStylesheet('.calendar, .calendar table, .calendar th, .calendar tr, .calendar td {text-align:center;} .calendar, .calendar a { margin:0px !important; padding:0px !important;}','calendarStyles');
//}}}
/* |License||
|Author|Doug Compton ^^(Contributors: Lewcid/Saq Imtiaz, FND, Eric Shulman, Olivier Caleff)^^|
|Version|undefined|
--
|<<showtoc>> |
To modifiy the appearance, you can use CSS similiar to the below.
//{{{
.dcTOC ul {
color: red;
list-style-type: lower-roman;
}
.dcTOC a {
color: green;
border: none;
}
.dcTOC a:hover {
background: white;
border: solid 1px;
}
.dcTOCTop {
font-size: 2em;
color: green;
}
//}}}
*/
//{{{
version.extensions.DcTableOfContentsPlugin= {
major: 0, minor: 4, revision: 0,
type: "macro",
source: "http://devpad.tiddlyspot.com#DcTableOfContentsPlugin"
};
for (var n=0; n<config.formatters.length; n++) {
var format = config.formatters[n];
if (format.name == 'heading') {
format.handler = function(w) {
var e = createTiddlyElement(w.output, "h" + w.matchLength);
w.subWikifyTerm(e, this.termRegExp); //updated for TW 2.2+
if (w.tiddler && w.tiddler.isTOCInTiddler == 1) {
var c = createTiddlyElement(e, "div");
c.setAttribute("style", "font-size: 0.5em; color: blue;");
createTiddlyButton(c, " [top]", "Retour à la table des matières", window.scrollToTop, "dcTOCTop", null, null);
}
}
break;
}
}
config.macros.showtoc = {
handler: function(place, macroName, params, wikifier, paramString, tiddler) {
var text = "";
var title = "";
var myTiddler = null;
// Did they pass in a tiddler?
if (params.length) {
title = params[0];
myTiddler = store.getTiddler(title);
} else {
myTiddler = tiddler;
}
if (myTiddler == null) {
wikify("ERROR: Could not find " + title, place);
return;
}
var lines = myTiddler .text.split("\n");
myTiddler.isTOCInTiddler = 1;
var r = createTiddlyElement(place, "div", null, "dcTOC");
createTiddlyButton(r, "", "Masque/Affiche la Table des Matières",
//##0C##++
//createTiddlyButton(r, "?-? Masquer/Afficher ?-?", "Masque/Affiche la Table des Matières",
//##0C##--
function() { config.macros.showtoc.toggleElement(this.nextSibling);},
"toggleButton")
var c = createTiddlyElement(r, "div");
if (lines != null) {
//##0C##++
text = "•• "
//##0C##--
for (var x=0; x<lines.length; x++) {
var line = lines[x];
if (line.substr(0,1) == "!") {
// Find first non ! char
for (var i=0; i<line.length; i++) {
if (line.substr(i, 1) != "!") {
break;
}
}
var desc = line.substring(i);
// Remove WikiLinks
desc = desc.replace(/\[\[/g, "");
desc = desc.replace(/\]\]/g, "");
text += line.substr(0, i).replace(/[!]/g, '');
//##0C##++
// text += '<html><a href="javascript:;" onClick="window.scrollToHeading(\'' + title + '\', \'' + desc+ '\', event)">' + desc+ '</a></html>\n';
text += '<html><a href="javascript:;" onClick="window.scrollToHeading(\'' + title + '\', \'' + desc+ '\', event)">' + desc+ '</a></html> •• ';
//##0C##--
}
}
}
wikify(text, c);
}
}
config.macros.showtoc.toggleElement = function(e) {
if(e) {
if(e.style.display != "none") {
e.style.display = "none";
} else {
e.style.display = "";
}
}
};
window.scrollToTop = function(evt) {
if (! evt)
var evt = window.event;
var target = resolveTarget(evt);
var tiddler = story.findContainingTiddler(target);
if (! tiddler)
return false;
window.scrollTo(0, ensureVisible(tiddler));
return false;
};
window.scrollToHeading = function(title, anchorName, evt) {
var tiddler = null;
if (! evt)
var evt = window.event;
if (title) {
story.displayTiddler(store.getTiddler(title), title, null, false);
tiddler = document.getElementById(story.idPrefix + title);
} else {
var target = resolveTarget(evt);
tiddler = story.findContainingTiddler(target);
}
if (tiddler == null)
return false;
var children1 = tiddler.getElementsByTagName("h1");
var children2 = tiddler.getElementsByTagName("h2");
var children3 = tiddler.getElementsByTagName("h3");
var children4 = tiddler.getElementsByTagName("h4");
var children5 = tiddler.getElementsByTagName("h5");
var children = new Array();
children = children.concat(children1, children2, children3, children4, children5);
for (var i = 0; i < children.length; i++) {
for (var j = 0; j < children[i].length; j++) {
var heading = children[i][j].innerHTML;
// Remove all HTML tags
while (heading.indexOf("<") >= 0) {
heading = heading.substring(0, heading.indexOf("<")) + heading.substring(heading.indexOf(">") + 1);
}
// Cut off the code added in showtoc for TOP
heading = heading.substr(0, heading.length-6);
if (heading == anchorName) {
var y = findPosY(children[i][j]);
window.scrollTo(0,y);
return false;
}
}
}
return false
};
//}}}
/* |License|https://tiddlytools.com/Classic/#LegalStatements|
|Author|[[Eric Shulman|https://tiddlytools.com/Classic/]]|
|Version|1.6.0 (2008.07.23)|
!Configuration
<<<
<<option chkDisableWikiLinks>> Disable ALL automatic WikiWord tiddler links
<<option chkAllowLinksFromShadowTiddlers>> .. except for WikiWords //contained in// shadow tiddlers
<<option chkDisableNonExistingWikiLinks>> Disable automatic WikiWord links for non-existing tiddlers
Disable automatic WikiWord links for words listed in: <<option txtDisableWikiLinksList>>
Disable automatic WikiWord links for tiddlers tagged with: <<option txtDisableWikiLinksTag>>
<<<
!Code
*/
//{{{
version.extensions.DisableWikiLinksPlugin= {major: 1, minor: 6, revision: 0, date: new Date(2008,7,22)};
if (config.options.chkDisableNonExistingWikiLinks==undefined) config.options.chkDisableNonExistingWikiLinks= false;
if (config.options.chkDisableWikiLinks==undefined) config.options.chkDisableWikiLinks=false;
if (config.options.txtDisableWikiLinksList==undefined) config.options.txtDisableWikiLinksList="DisableWikiLinksList";
if (config.options.chkAllowLinksFromShadowTiddlers==undefined) config.options.chkAllowLinksFromShadowTiddlers=true;
if (config.options.txtDisableWikiLinksTag==undefined) config.options.txtDisableWikiLinksTag="excludeWikiWords";
// find the formatter for wikiLink and replace handler with 'pass-thru' rendering
initDisableWikiLinksFormatter();
function initDisableWikiLinksFormatter() {
for (var i=0; i<config.formatters.length && config.formatters[i].name!="wikiLink"; i++);
config.formatters[i].coreHandler=config.formatters[i].handler;
config.formatters[i].handler=function(w) {
// supress any leading "~" (if present)
var skip=(w.matchText.substr(0,1)==config.textPrimitives.unWikiLink)?1:0;
var title=w.matchText.substr(skip);
var exists=store.tiddlerExists(title);
var inShadow=w.tiddler && store.isShadowTiddler(w.tiddler.title);
// check for excluded Tiddler
if (w.tiddler && w.tiddler.isTagged(config.options.txtDisableWikiLinksTag))
{ w.outputText(w.output,w.matchStart+skip,w.nextMatch); return;}
// check for specific excluded wiki words
var t=store.getTiddlerText(config.options.txtDisableWikiLinksList);
if (t && t.length && t.indexOf(w.matchText)!=-1)
{ w.outputText(w.output,w.matchStart+skip,w.nextMatch); return;}
// if not disabling links from shadows (default setting)
if (config.options.chkAllowLinksFromShadowTiddlers && inShadow)
return this.coreHandler(w);
// check for non-existing non-shadow tiddler
if (config.options.chkDisableNonExistingWikiLinks && !exists)
{ w.outputText(w.output,w.matchStart+skip,w.nextMatch); return;}
// if not enabled, just do standard WikiWord link formatting
if (!config.options.chkDisableWikiLinks)
return this.coreHandler(w);
// just return text without linking
w.outputText(w.output,w.matchStart+skip,w.nextMatch)
}
}
Tiddler.prototype.coreAutoLinkWikiWords = Tiddler.prototype.autoLinkWikiWords;
Tiddler.prototype.autoLinkWikiWords = function()
{
if (!config.options.chkDisableWikiLinks)
return this.coreAutoLinkWikiWords.apply(this,arguments);
return false;
}
Tiddler.prototype.disableWikiLinks_changed = Tiddler.prototype.changed;
Tiddler.prototype.changed = function()
{
this.disableWikiLinks_changed.apply(this,arguments);
var t=store.getTiddlerText(config.options.txtDisableWikiLinksList,"").readBracketedList();
if (t.length) for (var i=0; i<t.length; i++)
if (this.links.contains(t[i]))
this.links.splice(this.links.indexOf(t[i]),1);
};
//}}}
/*
|Author|Yakov Litvin ^^(Original: [[Udo Borkowski|https://tiddlywiki.abego-software.de/]])^^|
|Version|undefined|
|Forked from|[[abego.ForEachTiddlerPlugin|http://tiddlywiki.abego-software.de/#ForEachTiddlerPlugin]]| */
//{{{
(function(){
// Only install once
if (version.extensions.ForEachTiddlerPlugin) {
alert("Warning: more than one copy of ForEachTiddlerPlugin is set to be launched");
return;
} else
version.extensions.ForEachTiddlerPlugin = {
source: "[repository url here]",
licence: "[licence url here]",
copyright: "Copyright (c) Yakov Litvin, 2012 [url of the meta page]"
};
config.macros.forEachTiddler = {
actions: {
addToList: {},
write: {}
}
};
config.macros.forEachTiddler.handler = function(place,macroName,params,wikifier,paramString,tiddler) {
var parsedParams = this.parseParams(params);
if (parsedParams.errorText) {
this.handleError(place, parsedParams.errorText);
return;
}//else
parsedParams.place = place;
parsedParams.inTiddler = tiddler? tiddler : getContainingTiddler(place);
parsedParams.actionName = parsedParams.actionName ? parsedParams.actionName : "addToList";
var actionName = parsedParams.actionName;
var action = this.actions[actionName];
if (!action) {
this.handleError(place, "Unknown action '"+actionName+"'.");
return;
}
var element = document.createElement(action.element);
jQuery(element).attr({ refresh: "macro", macroName: macroName }).data(parsedParams);
place.appendChild(element);
this.refresh(element);
};
config.macros.forEachTiddler.refresh = function(element) {
var parsedParams = jQuery(element).data(),
action = this.actions[parsedParams.actionName];
jQuery(element).empty();
try {
var tiddlersAndContext = this.getTiddlersAndContext(parsedParams);
action.handler(element, tiddlersAndContext.tiddlers,
parsedParams.actionParameter, tiddlersAndContext.context);
} catch (e) {
this.handleError(place, e);
}
};
config.macros.forEachTiddler.getTiddlersAndContext = function(parameter) {
var context = config.macros.forEachTiddler.createContext(parameter.place, parameter.filter, parameter.whereClause, parameter.sortClause, parameter.sortAscending, parameter.actionName, parameter.actionParameter, parameter.scriptText, parameter.tiddlyWikiPath, parameter.inTiddler);
var tiddlyWiki = parameter.tiddlyWikiPath ? this.loadTiddlyWiki(parameter.tiddlyWikiPath) : store;
context["tiddlyWiki"] = tiddlyWiki;
var tiddlers = this.findTiddlers(parameter.filter, parameter.whereClause, context, tiddlyWiki);
context["tiddlers"] = tiddlers;
if (parameter.sortClause)
this.sortTiddlers(tiddlers, parameter.sortClause, parameter.sortAscending, context);
return {tiddlers: tiddlers, context: context};
};
config.macros.forEachTiddler.actions.addToList.element = "ul";
config.macros.forEachTiddler.actions.addToList.handler = function(place, tiddlers, parameter, context) {
var p = 0;
if (parameter.length > p) {
config.macros.forEachTiddler.createExtraParameterErrorElement(place, "addToList", parameter, p);
return;
}
for (var i = 0; i < tiddlers.length; i++) {
var tiddler = tiddlers[i];
var listItem = document.createElement("li");
place.appendChild(listItem);
createTiddlyLink(listItem, tiddler.title, true);
}
};
var parseNamedParameter = function(name, parameter, i) {
var beginExpression = null;
if ((i < parameter.length) && parameter[i] == name) {
i++;
if (i >= parameter.length) {
throw "Missing text behind '%0'".format([name]);
}
return config.macros.forEachTiddler.paramEncode(parameter[i]);
}
return null;
}
config.macros.forEachTiddler.actions.write.element = "span";
config.macros.forEachTiddler.actions.write.handler = function(place, tiddlers, parameter, context) {
var p = 0;
if (p >= parameter.length) {
this.handleError(place, "Missing expression behind 'write'.");
return;
}
var textExpression = config.macros.forEachTiddler.paramEncode(parameter[p]);
p++;
var beginExpression = parseNamedParameter("begin", parameter, p);
if (beginExpression !== null)
p += 2;
var endExpression = parseNamedParameter("end", parameter, p);
if (endExpression !== null)
p += 2;
var noneExpression = parseNamedParameter("none", parameter, p);
if (noneExpression !== null)
p += 2;
var filename = null;
var lineSeparator = undefined;
if ((p < parameter.length) && parameter[p] == "toFile") {
p++;
if (p >= parameter.length) {
this.handleError(place, "Filename expected behind 'toFile' of 'write' action.");
return;
}
filename = config.macros.forEachTiddler.getLocalPath(config.macros.forEachTiddler.paramEncode(parameter[p]));
p++;
if ((p < parameter.length) && parameter[p] == "withLineSeparator") {
p++;
if (p >= parameter.length) {
this.handleError(place, "Line separator text expected behind 'withLineSeparator' of 'write' action.");
return;
}
lineSeparator = config.macros.forEachTiddler.paramEncode(parameter[p]);
p++;
}
}
if (parameter.length > p) {
config.macros.forEachTiddler.createExtraParameterErrorElement(place, "write", parameter, p);
return;
}
var func = config.macros.forEachTiddler.getEvalTiddlerFunction(textExpression, context);
var count = tiddlers.length;
var text = "";
if (count > 0 && beginExpression)
text += config.macros.forEachTiddler.getEvalTiddlerFunction(beginExpression, context)(undefined, context, count, undefined);
for (var i = 0; i < count; i++) {
var tiddler = tiddlers[i];
text += func(tiddler, context, count, i);
}
if (count > 0 && endExpression)
text += config.macros.forEachTiddler.getEvalTiddlerFunction(endExpression, context)(undefined, context, count, undefined);
if (count == 0 && noneExpression)
text += config.macros.forEachTiddler.getEvalTiddlerFunction(noneExpression, context)(undefined, context, count, undefined);
if (filename) {
if (lineSeparator !== undefined) {
lineSeparator = lineSeparator.replace(/\\n/mg, "\n").replace(/\\r/mg, "\r");
text = text.replace(/\n/mg,lineSeparator);
}
saveFile(filename, convertUnicodeToUTF8(text));
} else
wikify(text, place, null/* highlightRegExp */, context.inTiddler);
};
config.macros.forEachTiddler.parseParams = function(params) {
var i = 0; // index running over the params
var tiddlyWikiPath = undefined;
if ((i < params.length) && params[i] == "in") {
i++;
if (i >= params.length)
return { errorText: "TiddlyWiki path expected behind 'in'."};
tiddlyWikiPath = this.paramEncode((i < params.length) ? params[i] : "");
i++;
}
if ((i < params.length) && params[i] == "filter") {
i++;
var filter = (i < params.length) ? params[i] : undefined;
i++;
}
var whereClause ="true";
if ((i < params.length) && params[i] == "where") {
i++;
whereClause = this.paramEncode((i < params.length) ? params[i] : "");
i++;
}
var sortClause = null;
var sortAscending = true;
if ((i < params.length) && params[i] == "sortBy") {
i++;
if (i >= params.length)
return { errorText: "sortClause missing behind 'sortBy'."};
sortClause = this.paramEncode(params[i]);
i++;
if ((i < params.length) && (params[i] == "ascending" || params[i] == "descending")) {
sortAscending = params[i] == "ascending";
i++;
}
}
var scriptText = null;
if ((i < params.length) && params[i] == "script") {
i++;
scriptText = this.paramEncode((i < params.length) ? params[i] : "");
i++;
}
var actionName = "addToList";
if (i < params.length) {
if (!config.macros.forEachTiddler.actions[params[i]])
return { errorText: "Unknown action '"+params[i]+"'."};
else {
actionName = params[i];
i++;
}
}
var actionParameter = params.slice(i);
return {
filter: filter,
whereClause: whereClause,
sortClause: sortClause,
sortAscending: sortAscending,
actionName: actionName,
actionParameter: actionParameter,
scriptText: scriptText,
tiddlyWikiPath: tiddlyWikiPath
}
};
var getContainingTiddler = function(e) {
while(e && !hasClass(e,"tiddler"))
e = e.parentNode;
var title = e ? e.getAttribute("tiddler") : null;
return title ? store.getTiddler(title) : null;
};
config.macros.forEachTiddler.createContext = function(placeParam, filterParam, whereClauseParam, sortClauseParam, sortAscendingParam, actionNameParam, actionParameterParam, scriptText, tiddlyWikiPathParam, inTiddlerParam) {
return {
place : placeParam,
filter : filterParam,
whereClause : whereClauseParam,
sortClause : sortClauseParam,
sortAscending : sortAscendingParam,
script : scriptText,
actionName : actionNameParam,
actionParameter : actionParameterParam,
tiddlyWikiPath : tiddlyWikiPathParam,
inTiddler : inTiddlerParam, // the tiddler containing the <<forEachTiddler ..>> macro call.
viewerTiddler : getContainingTiddler(placeParam) //the tiddler showing the forEachTiddler result
};
};
config.macros.forEachTiddler.loadTiddlyWiki = function(path, idPrefix) {
if (!idPrefix) {
idPrefix = "store";
}
var lenPrefix = idPrefix.length;
var content = loadFile(this.getLocalPath(path));
if(content === null) {
throw "TiddlyWiki '"+path+"' not found.";
}
var tiddlyWiki = new TiddlyWiki();
if (!tiddlyWiki.importTiddlyWiki(content))
throw "File '"+path+"' is not a TiddlyWiki.";
tiddlyWiki.dirty = false;
return tiddlyWiki;
};
config.macros.forEachTiddler.getEvalTiddlerFunction = function (javaScriptExpression, context) {
var script = context["script"];
var functionText = "var theFunction = function(tiddler, context, count, index) { return "+javaScriptExpression+"}";
var fullText = (script ? script+";" : "")+functionText+";theFunction;";
return eval(fullText);
};
config.macros.forEachTiddler.findTiddlers = function(filter, whereClause, context, tiddlyWiki) {
var result = [];
var func = config.macros.forEachTiddler.getEvalTiddlerFunction(whereClause, context);
if(filter) {
var tids = tiddlyWiki.filterTiddlers(filter);
for(var i = 0; i < tids.length; i++)
if(func(tids[i], context, undefined, undefined))
result.push(tids[i]);
} else
tiddlyWiki.forEachTiddler(function(title,tiddler) {
if(func(tiddler, context, undefined, undefined))
result.push(tiddler);
});
return result;
};
config.macros.forEachTiddler.sortAscending = function(tiddlerA, tiddlerB) {
return ((tiddlerA.forEachTiddlerSortValue == tiddlerB.forEachTiddlerSortValue)
? 0
: ((tiddlerA.forEachTiddlerSortValue < tiddlerB.forEachTiddlerSortValue)
? -1
: +1))
};
config.macros.forEachTiddler.sortDescending = function(tiddlerA, tiddlerB) {
return ((tiddlerA.forEachTiddlerSortValue == tiddlerB.forEachTiddlerSortValue)
? 0
: ((tiddlerA.forEachTiddlerSortValue < tiddlerB.forEachTiddlerSortValue)
? +1
: -1))
};
config.macros.forEachTiddler.sortTiddlers = function(tiddlers, sortClause, ascending, context) {
var func = config.macros.forEachTiddler.getEvalTiddlerFunction(sortClause, context);
var count = tiddlers.length;
var i;
for (i = 0; i < count; i++) {
var tiddler = tiddlers[i];
tiddler.forEachTiddlerSortValue = func(tiddler,context, undefined, undefined);
}
tiddlers.sort(ascending ? this.sortAscending : this.sortDescending);
for (i = 0; i < tiddlers.length; i++)
delete tiddlers[i].forEachTiddlerSortValue;
};
config.macros.forEachTiddler.createErrorElement = function(place, exception) {
var message = (exception.description) ? exception.description : exception.toString();
return createTiddlyElement(place,"span",null,"forEachTiddlerError","<<forEachTiddler ..>>: "+message);
};
config.macros.forEachTiddler.handleError = function(place, exception) {
if (place) {
this.createErrorElement(place, exception);
} else {
throw exception;
}
};
config.macros.forEachTiddler.createExtraParameterErrorElement = function(place, actionName, parameter, firstUnusedIndex) {
var message = "Extra parameter behind '"+actionName+"':";
for (var i = firstUnusedIndex; i < parameter.length; i++) {
message += " "+parameter[i];
}
this.handleError(place, message);
};
config.macros.forEachTiddler.paramEncode = function(s) {
var reGTGT = new RegExp("\\$\\)\\)","mg");
var reGT = new RegExp("\\$\\)","mg");
return s.replace(reGTGT, ">>").replace(reGT, ">");
};
config.macros.forEachTiddler.getLocalPath = function(originalPath) {
var originalAbsolutePath = originalPath;
if(originalAbsolutePath.search(/^((http(s)?)|(file)):/) != 0) {
if (originalAbsolutePath.search(/^(.\:\\)|(\\\\)|(\/)/) != 0){// is relative?
var currentUrl = document.location.toString();
var currentPath = (currentUrl.lastIndexOf("/") > -1) ?
currentUrl.substr(0, currentUrl.lastIndexOf("/") + 1) :
currentUrl + "/";
originalAbsolutePath = currentPath + originalAbsolutePath;
} else
originalAbsolutePath = "file://" + originalAbsolutePath;
originalAbsolutePath = originalAbsolutePath.replace(/\\/mg,"/");
}
return getLocalPath(originalAbsolutePath);
};
setStylesheet(
".forEachTiddlerError{color: #ffffff;background-color: #880000;}",
"forEachTiddler");
config.macros.fet = config.macros.forEachTiddler;
String.prototype.startsWith = function(prefix) {
var n = prefix.length;
return (this.length >= n) && (this.slice(0, n) == prefix);
};
String.prototype.endsWith = function(suffix) {
var n = suffix.length;
return (this.length >= n) && (this.right(n) == suffix);
};
String.prototype.contains = function(substring) {
return this.indexOf(substring) >= 0;
};
})();
Tiddler.prototype.getSlice = function(sliceName,defaultText) {
var re = TiddlyWiki.prototype.slicesRE;
re.lastIndex = 0;
var m = re.exec(this.text);
while(m) {
if(m[2]) {
if(m[2] == sliceName)
return m[3];
} else {
if(m[5] == sliceName)
return m[6];
}
m = re.exec(this.text);
}
return defaultText;
};
Tiddler.prototype.getSection = function(sectionName,defaultText) {
var beginSectionRegExp = new RegExp("(^!{1,6}[ \t]*" + sectionName.escapeRegExp() + "[ \t]*\n)","mg"),
sectionTerminatorRegExp = /^!/mg;
var match = beginSectionRegExp.exec(this.text), sectionText;
if(match) {
sectionText = this.text.substr(match.index+match[1].length);
match = sectionTerminatorRegExp.exec(sectionText);
if(match)
sectionText = sectionText.substr(0,match.index-1); // don't include final \n
return sectionText
}
return defaultText;
};
//}}}
/*
|Author|Lewcid/SaqImtiaz ^^(Contributors: Olivier Caleff)^^|
|Version|1.11|
|URL|http://tw.lewcid.org/#HoverMenuPlugin| */
//{{{
config.hoverMenu={};
config.hoverMenu.settings={ align: 'right', x: 32, y: 80 };
//continue HoverMenu plugin code
config.hoverMenu.handler=function()
{
if (!document.getElementById("hoverMenu"))
{
var theMenu = createTiddlyElement(document.getElementById("contentWrapper"), "div","hoverMenu");
theMenu.setAttribute("refresh","content");
theMenu.setAttribute("tiddler","HoverMenu");
var menuContent = store.getTiddlerText("HoverMenu");
wikify(menuContent,theMenu);
}
var Xloc = this.settings.x;
Yloc =this.settings.y;
var ns = (navigator.appName.indexOf("Netscape") != -1);
function SetMenu(id)
{
var GetElements=document.getElementById?document.getElementById(id):document.all?document.all[id]:document.layers[id];
if(document.layers)GetElements.style=GetElements;
GetElements.sP=function(x,y){this.style[config.hoverMenu.settings.align]=x +"px";this.style.top=y +"px";};
GetElements.x = Xloc;
GetElements.y = findScrollY();
GetElements.y += Yloc;
return GetElements;
}
window.LoCate_XY=function()
{
var pY = findScrollY();
ftlObj.y += (pY + Yloc - ftlObj.y)/15;
ftlObj.sP(ftlObj.x, ftlObj.y);
setTimeout("LoCate_XY()", 10);
}
ftlObj = SetMenu("hoverMenu");
LoCate_XY();
};
window.old_lewcid_hovermenu_restart = restart;
restart = function()
{ window.old_lewcid_hovermenu_restart(); config.hoverMenu.handler();};
setStylesheet(
"#hoverMenu .imgLink, #hoverMenu .imgLink:hover {border:none; padding:0px; float:right; margin-bottom:2px; margin-top:0px;}\n"+
"#hoverMenu .button, #hoverMenu .tiddlyLink {border:none; font-weight:bold; background:#000091; color:yellow; padding:0 5px; float:right; margin-bottom:4px;}\n"+
"#hoverMenu .button:hover, #hoverMenu .tiddlyLink:hover {font-weight:bold; border:none; color:#000091; background:yellow; padding:0 10px; float:right; margin-bottom:4px;}\n"+
"#hoverMenu .button {width:100%; text-align:center}"+
"#hoverMenu { position:absolute; width:10px;}\n"+
"\n","hoverMenuStyles");
config.macros.renameButton={};
config.macros.renameButton.handler = function(place,macroName,params,wikifier,paramString,tiddler)
{ if (place.lastChild.tagName!="BR") { place.lastChild.firstChild.data = params[0]; if (params[1]) {place.lastChild.title = params[1];} } };
config.shadowTiddlers["HoverMenu"]="<<top>>\n[[Annuaires|Annuaire]]\n[[Référentiels|Référentiels - Frameworks]]\n[[TRANSITS|T1FR]]\n[[SIM3|S3FR]]\n<<bottom>>";
//}}}
//++++ ToggleSideBarMacro code
//{{{
config.macros.toggleSideBar={};
config.macros.toggleSideBar.settings={
styleHide : "#sidebar {display: none;}\n"+"#contentWrapper #displayArea { margin-right: 1em;}\n"+"",
styleShow : " ",
arrow1: "«",
arrow2: "»"
};
config.macros.toggleSideBar.handler=function (place,macroName,params,wikifier,paramString,tiddler)
{
var tooltip= params[1]||'toggle sidebar';
var mode = (params[2] && params[2]=="hide")? "hide":"show";
var arrow = (mode == "hide")? this.settings.arrow1:this.settings.arrow2;
var label= (params[0]&¶ms[0]!='.')?params[0]+" "+arrow:arrow;
var theBtn = createTiddlyButton(place,label,tooltip,this.onToggleSideBar,"button HideSideBarButton");
if (mode == "hide")
{
(document.getElementById("sidebar")).setAttribute("toggle","hide");
setStylesheet(this.settings.styleHide,"ToggleSideBarStyles");
}
};
config.macros.toggleSideBar.onToggleSideBar = function(){
var sidebar = document.getElementById("sidebar");
var settings = config.macros.toggleSideBar.settings;
if (sidebar.getAttribute("toggle")=='hide')
{
setStylesheet(settings.styleShow,"ToggleSideBarStyles");
sidebar.setAttribute("toggle","show");
this.firstChild.data= (this.firstChild.data).replace(settings.arrow1,settings.arrow2);
}
else
{
setStylesheet(settings.styleHide,"ToggleSideBarStyles");
sidebar.setAttribute("toggle","hide");
this.firstChild.data= (this.firstChild.data).replace(settings.arrow2,settings.arrow1);
}
return false;
}
setStylesheet(".HideSideBarButton .button {font-weight:bold; padding: 0 5px;}\n","ToggleSideBarButtonStyles");
//}}}
//++++ JumpToTopMacro code
//{{{
config.macros.top={};
config.macros.top.handler=function(place,macroName)
{ createTiddlyButton(place,"⮝","jump to top",this.onclick);}
config.macros.top.onclick=function()
{ window.scrollTo(0,0);};
config.commands.top =
{ text:" ⮝ ", tooltip:"jump to top"};
config.commands.top.handler = function(event,src,title)
{ window.scrollTo(0,0);}
//#OC4# ++++ JumpBottom function
config.macros.bottom={};
config.macros.bottom.handler=function(place,macroName)
{ createTiddlyButton(place,"⮟","jump to bottom",this.onclick);}
config.macros.bottom.onclick=function()
{ window.scrollTo(0,9999);};
config.commands.bottom =
{ text:" ⮟ ", tooltip:"jump to bottom"};
config.commands.bottom.handler = function(event,src,title)
{ window.scrollTo(0,9999);}
//#OC4# ---- JumpBottom function
//}}}
//++++ JumpMacro code
//{{{
config.macros.jump= {};
config.macros.jump.handler = function (place,macroName,params,wikifier,paramString,tiddler)
{
var label = (params[0] && params[0]!=".")? params[0]: 'jump';
var tooltip = (params[1] && params[1]!=".")? params[1]: 'jump to an open tiddler/article';
var top = (params[2] && params[2]=='top') ? true: false;
var btn =createTiddlyButton(place,label,tooltip,this.onclick);
if (top==true)
btn.setAttribute("top","true")
}
config.macros.jump.onclick = function(e)
{
if (!e) var e = window.event;
var theTarget = resolveTarget(e);
var top = theTarget.getAttribute("top");
var popup = Popup.create(this);
if(popup)
{
if(top=="true")
{createTiddlyButton(createTiddlyElement(popup,"li"),'Top ↑','Top of TW',config.macros.jump.top);
createTiddlyElement(popup,"hr");}
story.forEachTiddler(function(title,element) {
createTiddlyLink(createTiddlyElement(popup,"li"),title,true);
});
}
Popup.show(popup,false);
e.cancelBubble = true;
if (e.stopPropagation) e.stopPropagation();
return false;
}
config.macros.jump.top = function()
{ window.scrollTo(0,0);}
//}}}
//++++ utility functions
//{{{
Popup.show = function(unused,slowly)
{
var curr = Popup.stack[Popup.stack.length-1];
var rootLeft = findPosX(curr.root);
var rootTop = findPosY(curr.root);
var rootHeight = curr.root.offsetHeight;
var popupLeft = rootLeft;
var popupTop = rootTop + rootHeight;
var popupWidth = curr.popup.offsetWidth;
var winWidth = findWindowWidth();
if (isChild(curr.root,'hoverMenu'))
var x = config.hoverMenu.settings.x;
else
var x = 0;
if(popupLeft + popupWidth+x > winWidth)
popupLeft = winWidth - popupWidth -x;
if (isChild(curr.root,'hoverMenu'))
{curr.popup.style.right = x + "px";}
else
curr.popup.style.left = popupLeft + "px";
curr.popup.style.top = popupTop + "px";
curr.popup.style.display = "block";
addClass(curr.root,"highlight");
if(config.options.chkAnimate)
anim.startAnimating(new Scroller(curr.popup,slowly));
else
window.scrollTo(0,ensureVisible(curr.popup));
}
window.isChild = function(e,parentId) {
while (e != null) {
var parent = document.getElementById(parentId);
if (parent == e) return true;
e = e.parentNode;
}
return false;
};
//}}}
/* |License|https://tiddlytools.com/Classic/#LegalStatements|
|Author|[[Eric Shulman|https://tiddlytools.com/Classic/]]|
|Version|2.4.1 (2010.05.07)|
!Configuration
<<<
Use {{{<hide linebreaks>}}} within HTML content to wiki-style rendering of line breaks. To //always// omit all line breaks from the rendered output, you can set this option:
><<option chkHTMLHideLinebreaks>> ignore all line breaks
which can also be 'hard coded' into your document by adding the following to a tiddler, tagged with <<tag systemConfig>>
>{{{config.options.chkHTMLHideLinebreaks=true;}}}
<<<
!Code
*/
//{{{
version.extensions.HTMLFormattingPlugin= {major: 2, minor: 4, revision: 1, date: new Date(2010,5,7)};
// find the formatter for HTML and replace the handler
initHTMLFormatter();
function initHTMLFormatter()
{
for (var i=0; i<config.formatters.length && config.formatters[i].name!="html"; i++);
if (i<config.formatters.length) config.formatters[i].handler=function(w) {
if (!this.lookaheadRegExp)
this.lookaheadRegExp = new RegExp(this.lookahead,"mg");
this.lookaheadRegExp.lastIndex = w.matchStart;
var lookaheadMatch = this.lookaheadRegExp.exec(w.source)
if(lookaheadMatch && lookaheadMatch.index == w.matchStart) {
var html=lookaheadMatch[1];
// if <nowiki> is present, just let browser handle it!
if (html.indexOf('<nowiki>')!=-1)
createTiddlyElement(w.output,"span").innerHTML=html;
else {
// if <hide linebreaks> is present, or chkHTMLHideLinebreaks is set
// suppress wiki-style literal handling of newlines
if (config.options.chkHTMLHideLinebreaks||(html.indexOf('<hide linebreaks>')!=-1))
html=html.replace(/\n/g,' ');
// remove all \r's added by IE textarea and mask newlines and macro brackets
html=html.replace(/\r/g,'').replace(/\n/g,'\\n').replace(/<</g,'%%(').replace(/>>/g,')%%');
// create span, let browser parse HTML
var e=createTiddlyElement(w.output,"span"); e.innerHTML=html;
// then re-render text nodes as wiki-formatted content
wikifyTextNodes(e,w);
}
w.nextMatch = this.lookaheadRegExp.lastIndex; // continue parsing
}
}
}
// wikify #text nodes that remain after HTML content is processed (pre-order recursion)
function wikifyTextNodes(theNode,w)
{
function unmask(s) { return s.replace(/\%%\(/g,'<<').replace(/\)\%%/g,'>>').replace(/\\n/g,'\n');}
switch (theNode.nodeName.toLowerCase()) {
case 'style': case 'option': case 'select':
theNode.innerHTML=unmask(theNode.innerHTML);
break;
case 'textarea':
theNode.value=unmask(theNode.value);
break;
case '#text':
var txt=unmask(theNode.nodeValue);
var newNode=createTiddlyElement(null,"span");
theNode.parentNode.replaceChild(newNode,theNode);
wikify(txt,newNode,highlightHack,w.tiddler);
break;
default:
for (var i=0;i<theNode.childNodes.length;i++)
wikifyTextNodes(theNode.childNodes.item(i),w); // recursion
break;
}
}
//}}}
/* |License|https://tiddlytools.com/Classic/#LegalStatements|
|Author|[[Eric Shulman|https://tiddlytools.com/Classic/]]|
|Version|1.2.2 (2010-07-24)|
!Code
*/
//{{{
version.extensions.ImageSizePlugin= {major: 1, minor: 2, revision: 2, date: new Date(2010,7,24)};
//}}}
//{{{
var f=config.formatters[config.formatters.findByField("name","image")];
f.match="\\[[<>]?[Ii][Mm][Gg](?:\\([^,]*,[^\\)]*\\))?\\[";
f.lookaheadRegExp=/\[([<]?)(>?)[Ii][Mm][Gg](?:\(([^,]*),([^\)]*)\))?\[(?:([^\|\]]+)\|)?([^\[\]\|]+)\](?:\[([^\]]*)\])?\]/mg;
f.handler=function(w) {
this.lookaheadRegExp.lastIndex = w.matchStart;
var lookaheadMatch = this.lookaheadRegExp.exec(w.source)
if(lookaheadMatch && lookaheadMatch.index == w.matchStart) {
var floatLeft=lookaheadMatch[1];
var floatRight=lookaheadMatch[2];
var width=lookaheadMatch[3];
var height=lookaheadMatch[4];
var tooltip=lookaheadMatch[5];
var src=lookaheadMatch[6];
var link=lookaheadMatch[7];
var e = w.output;
if(link) { // LINKED IMAGE
if (config.formatterHelpers.isExternalLink(link)) {
if (config.macros.attach && config.macros.attach.isAttachment(link)) {
// see [[AttachFilePluginFormatters]]
e = createExternalLink(w.output,link);
e.href=config.macros.attach.getAttachment(link);
e.title = config.macros.attach.linkTooltip + link;
} else
e = createExternalLink(w.output,link);
} else
e = createTiddlyLink(w.output,link,false,null,w.isStatic);
addClass(e,"imageLink");
}
var img = createTiddlyElement(e,"img");
if(floatLeft) img.align="left"; else if(floatRight) img.align="right";
if(width||height) {
var x=width.trim(); var y=height.trim();
var stretchW=(x.substr(x.length-1,1)=='+'); if (stretchW) x=x.substr(0,x.length-1);
var stretchH=(y.substr(y.length-1,1)=='+'); if (stretchH) y=y.substr(0,y.length-1);
if (x.substr(0,2)=="{{")
{ try{x=eval(x.substr(2,x.length-4))} catch(e){displayMessage(e.description||e.toString())} }
if (y.substr(0,2)=="{{")
{ try{y=eval(y.substr(2,y.length-4))} catch(e){displayMessage(e.description||e.toString())} }
img.style.width=x.trim(); img.style.height=y.trim();
config.formatterHelpers.addStretchHandlers(img,stretchW,stretchH);
}
if(tooltip) img.title = tooltip;
if (config.macros.attach && config.macros.attach.isAttachment(src))
src=config.macros.attach.getAttachment(src); // see [[AttachFilePluginFormatters]]
else if (config.formatterHelpers.resolvePath) { // see [[ImagePathPlugin]]
if (config.browser.isIE || config.browser.isSafari) {
img.onerror=(function(){
this.src=config.formatterHelpers.resolvePath(this.src,false);
return false;
});
} else
src=config.formatterHelpers.resolvePath(src,true);
}
img.src=src;
w.nextMatch = this.lookaheadRegExp.lastIndex;
}
}
config.formatterHelpers.imageSize={
tip: '', dragtip: 'DRAG=étirer/réduire, '
}
config.formatterHelpers.addStretchHandlers=function(e,stretchW,stretchH) {
e.title=((stretchW||stretchH)?this.imageSize.dragtip:'')+this.imageSize.tip;
e.statusMsg='width=%0, height=%1';
e.style.cursor='move';
e.originalW=e.style.width;
e.originalH=e.style.height;
e.minW=Math.max(e.offsetWidth/20,10);
e.minH=Math.max(e.offsetHeight/20,10);
e.stretchW=stretchW;
e.stretchH=stretchH;
e.onmousedown=function(ev) { var ev=ev||window.event;
this.sizing=true;
this.startX=!config.browser.isIE?ev.pageX:(ev.clientX+findScrollX());
this.startY=!config.browser.isIE?ev.pageY:(ev.clientY+findScrollY());
this.startW=this.offsetWidth;
this.startH=this.offsetHeight;
return false;
};
e.onmousemove=function(ev) { var ev=ev||window.event;
if (this.sizing) {
var s=this.style;
var currX=!config.browser.isIE?ev.pageX:(ev.clientX+findScrollX());
var currY=!config.browser.isIE?ev.pageY:(ev.clientY+findScrollY());
var newW=(currX-this.offsetLeft)/(this.startX-this.offsetLeft)*this.startW;
var newH=(currY-this.offsetTop )/(this.startY-this.offsetTop )*this.startH;
if (this.stretchW) s.width =Math.floor(Math.max(newW,this.minW))+'px';
if (this.stretchH) s.height=Math.floor(Math.max(newH,this.minH))+'px';
clearMessage(); displayMessage(this.statusMsg.format([s.width,s.height]));
}
return false;
};
e.onmouseup=function(ev) { var ev=ev||window.event;
if (ev.shiftKey) { this.style.width=this.style.height='';}
if (ev.ctrlKey) { this.style.width=this.originalW; this.style.height=this.originalH;}
this.sizing=false;
clearMessage();
return false;
};
e.onmouseout=function(ev) { var ev=ev||window.event;
this.sizing=false;
clearMessage();
return false;
};
}
//}}}
/* |License|https://tiddlytools.com/Classic/#LegalStatements|
|Author|[[Eric Shulman|https://tiddlytools.com/Classic/]]|
|Version|1.9.6 (2020.12.15)|
!Code
*/
//{{{
version.extensions.InlineJavascriptPlugin= {major: 1, minor: 9, revision: 6, date: new Date(2010,12,15)};
config.formatters.push( {
name: "inlineJavascript",
match: "\\<script",
lookahead: "\\<script(?: type=\\\"[^\\\"]*\\\")?(?: src=\\\"([^\\\"]*)\\\")?(?: label=\\\"([^\\\"]*)\\\")?(?: title=\\\"([^\\\"]*)\\\")?(?: key=\\\"([^\\\"]*)\\\")?( show)?\\>((?:.|\\n)*?)\\</script\\>",
handler: function(w) {
var lookaheadRegExp = new RegExp(this.lookahead,"mg");
lookaheadRegExp.lastIndex = w.matchStart;
var lookaheadMatch = lookaheadRegExp.exec(w.source)
if(lookaheadMatch && lookaheadMatch.index == w.matchStart) {
var src=lookaheadMatch[1];
var label=lookaheadMatch[2];
var tip=lookaheadMatch[3];
var key=lookaheadMatch[4];
var show=lookaheadMatch[5];
var code=lookaheadMatch[6];
if (src) { // external script library
var script = document.createElement("script"); script.src = src;
document.body.appendChild(script); document.body.removeChild(script);
}
if (code) { // inline code
if (show) // display source in tiddler
wikify("{{{\n"+lookaheadMatch[0]+"\n}}}\n",w.output);
if (label) { // create 'onclick' command link
var link=createTiddlyElement(w.output,"a",null,"tiddlyLinkExisting",wikifyPlainText(label));
var fixup=code.replace(/document.write\s*\(/gi,'place.bufferedHTML+=(');
link.code="function _out(place,tiddler){"+fixup+"\n};_out(this,this.tiddler);"
link.tiddler=w.tiddler;
link.onclick=function(){
this.bufferedHTML="";
try{ var r=eval(this.code);
if(this.bufferedHTML.length || (typeof(r)==="string")&&r.length)
var s=this.parentNode.insertBefore(document.createElement("span"),this.nextSibling);
if(this.bufferedHTML.length)
s.innerHTML=this.bufferedHTML;
if((typeof(r)==="string")&&r.length) {
wikify(r,s,null,this.tiddler);
return false;
} else return r!==undefined?r:false;
} catch(e){alert(e.description||e.toString());return false;}
};
link.setAttribute("title",tip||"");
var URIcode='javascript:void(eval(decodeURIComponent(%22(function(){try{';
URIcode+=encodeURIComponent(encodeURIComponent(code.replace(/\n/g,' ')));
URIcode+='}catch(e){alert(e.description||e.toString())}})()%22)))';
link.setAttribute("href",URIcode);
link.style.cursor="pointer";
if (key) link.accessKey=key.substr(0,1); // single character only
}
else { // run script immediately
var fixup=code.replace(/document.write\s*\(/gi,'place.innerHTML+=(');
var c="function _out(place,tiddler){"+fixup+"\n};_out(w.output,w.tiddler);";
try { var out=eval(c);}
catch(e) { out=e.description?e.description:e.toString();}
if (out && out.length) wikify(out,w.output,w.highlightRegExp,w.tiddler);
}
}
w.nextMatch = lookaheadMatch.index + lookaheadMatch[0].length;
}
}
} )
//}}}
// // Backward-compatibility for TW2.1.x and earlier
//{{{
if (typeof(wikifyPlainText)=="undefined") window.wikifyPlainText=function(text,limit,tiddler) {
if(limit > 0) text = text.substr(0,limit);
var wikifier = new Wikifier(text,formatter,null,tiddler);
return wikifier.wikifyPlain();
}
//}}}
// // GLOBAL FUNCTION: $( ..) -- 'shorthand' convenience syntax for document.getElementById()
//{{{
if (typeof($)=='undefined') { function $(id) { return document.getElementById(id.replace(/^#/,''));} }
//}}}
/* |License|https://tiddlytools.com/Classic/#LegalStatements|
|Author|[[Eric Shulman|https://tiddlytools.com/Classic/]]|
|Version|2.4.9 (2008.11.15)|
!Configuration
<<<
<<option chkFloatingSlidersAnimate>> allow floating sliders to animate when opening/closing
<<<
!Code
*/
//{{{
version.extensions.NestedSlidersPlugin= {major: 2, minor: 4, revision: 9, date: new Date(2008,11,15)};
// options for deferred rendering of sliders that are not initially displayed
if (config.options.chkFloatingSlidersAnimate===undefined)
config.options.chkFloatingSlidersAnimate=false; // avoid clipping problems in IE
// default styles for 'floating' class
setStylesheet(".floatingPanel { position:absolute; z-index:10; padding:0.5em; margin:0em; \
background-color:#fff; color:#014; border:1px solid #000; text-align:left;}","floatingPanelStylesheet");
// if removeCookie() function is not defined by TW core, define it here.
if (window.removeCookie===undefined) {
window.removeCookie=function(name) {
document.cookie = name+'=; expires=Thu, 01-Jan-1970 00:00:01 UTC; path=/;';
}
}
config.formatters.push( {
name: "nestedSliders",
match: "\\n?\\+{3}",
terminator: "\\s*\\={3}\\n?",
lookahead: "\\n?\\+{3}(\\+)?(\\([^\\)]*\\))?(\\!*)?(\\^(?:[^\\^\\*\\@\\[\\>]*\\^)?)?(\\*)?(\\@)?(?:\\{\\{([\\w]+[\\s\\w]*)\\{)?(\\[[^\\]]*\\])?(\\[[^\\]]*\\])?(?:\\}{3})?(\\#[^:]*\\:)?(\\>)?(\\.\\.\\.)?\\s*",
handler: function(w)
{
lookaheadRegExp = new RegExp(this.lookahead,"mg");
lookaheadRegExp.lastIndex = w.matchStart;
var lookaheadMatch = lookaheadRegExp.exec(w.source)
if(lookaheadMatch && lookaheadMatch.index == w.matchStart)
{
var defopen=lookaheadMatch[1];
var cookiename=lookaheadMatch[2];
var header=lookaheadMatch[3];
var panelwidth=lookaheadMatch[4];
var transient=lookaheadMatch[5];
var hover=lookaheadMatch[6];
var buttonClass=lookaheadMatch[7];
var label=lookaheadMatch[8];
var openlabel=lookaheadMatch[9];
var panelID=lookaheadMatch[10];
var blockquote=lookaheadMatch[11];
var deferred=lookaheadMatch[12];
// location for rendering button and panel
var place=w.output;
// default to closed, no cookie, no accesskey, no alternate text/tip
var show="none"; var cookie=""; var key="";
var closedtext=">"; var closedtip="";
var openedtext="<"; var openedtip="";
// extra "+", default to open
if (defopen) show="block";
// cookie, use saved open/closed state
if (cookiename) {
cookie=cookiename.trim().slice(1,-1);
cookie="chkSlider"+cookie;
if (config.options[cookie]==undefined)
{ config.options[cookie] = (show=="block") }
show=config.options[cookie]?"block":"none";
}
// parse label/tooltip/accesskey: [label=X|tooltip]
if (label) {
var parts=label.trim().slice(1,-1).split("|");
closedtext=parts.shift();
if (closedtext.substr(closedtext.length-2,1)=="=")
{ key=closedtext.substr(closedtext.length-1,1); closedtext=closedtext.slice(0,-2);}
openedtext=closedtext;
if (parts.length) closedtip=openedtip=parts.join("|");
else { closedtip="afficher "+closedtext; openedtip="masquer "+closedtext;}
}
// parse alternate label/tooltip: [label|tooltip]
if (openlabel) {
var parts=openlabel.trim().slice(1,-1).split("|");
openedtext=parts.shift();
if (parts.length) openedtip=parts.join("|");
else openedtip="hide "+openedtext;
}
var title=show=='block'?openedtext:closedtext;
var tooltip=show=='block'?openedtip:closedtip;
// create the button
if (header) { // use "Hn" header format instead of button/link
var lvl=(header.length>5)?5:header.length;
var btn = createTiddlyElement(createTiddlyElement(place,"h"+lvl,null,null,null),"a",null,buttonClass,title);
btn.onclick=onClickNestedSlider;
btn.setAttribute("href","javascript:;");
btn.setAttribute("title",tooltip);
}
else
var btn = createTiddlyButton(place,title,tooltip,onClickNestedSlider,buttonClass);
btn.innerHTML=title; // enables use of HTML entities in label
// set extra button attributes
btn.setAttribute("closedtext",closedtext);
btn.setAttribute("closedtip",closedtip);
btn.setAttribute("openedtext",openedtext);
btn.setAttribute("openedtip",openedtip);
btn.sliderCookie = cookie; // save the cookiename (if any) in the button object
btn.defOpen=defopen!=null; // save default open/closed state (boolean)
btn.keyparam=key; // save the access key letter ("" if none)
if (key.length) {
btn.setAttribute("accessKey",key); // init access key
btn.onfocus=function(){this.setAttribute("accessKey",this.keyparam);}; // **reclaim** access key on focus
}
btn.setAttribute("hover",hover?"true":"false");
btn.onmouseover=function(ev) {
// optional 'open on hover' handling
if (this.getAttribute("hover")=="true" && this.sliderPanel.style.display=='none') {
document.onclick.call(document,ev); // close transients
onClickNestedSlider(ev); // open this slider
}
// mouseover on button aligns floater position with button
if (window.adjustSliderPos) window.adjustSliderPos(this.parentNode,this,this.sliderPanel);
}
// create slider panel
var panelClass=panelwidth?"floatingPanel":"sliderPanel";
if (panelID) panelID=panelID.slice(1,-1); // trim off delimiters
var panel=createTiddlyElement(place,"div",panelID,panelClass,null);
panel.button = btn; // so the slider panel know which button it belongs to
btn.sliderPanel=panel; // so the button knows which slider panel it belongs to
panel.defaultPanelWidth=(panelwidth && panelwidth.length>2)?panelwidth.slice(1,-1):"";
panel.setAttribute("transient",transient=="*"?"true":"false");
panel.style.display = show;
panel.style.width=panel.defaultPanelWidth;
panel.onmouseover=function(event) // mouseover on panel aligns floater position with button
{ if (window.adjustSliderPos) window.adjustSliderPos(this.parentNode,this.button,this);}
// render slider (or defer until shown)
w.nextMatch = lookaheadMatch.index + lookaheadMatch[0].length;
if ((show=="block")||!deferred) {
// render now if panel is supposed to be shown or NOT deferred rendering
w.subWikify(blockquote?createTiddlyElement(panel,"blockquote"):panel,this.terminator);
// align floater position with button
if (window.adjustSliderPos) window.adjustSliderPos(place,btn,panel);
}
else {
var src = w.source.substr(w.nextMatch);
var endpos=findMatchingDelimiter(src,"+++","===");
panel.setAttribute("raw",src.substr(0,endpos));
panel.setAttribute("blockquote",blockquote?"true":"false");
panel.setAttribute("rendered","false");
w.nextMatch += endpos+3;
if (w.source.substr(w.nextMatch,1)=="\n") w.nextMatch++;
}
}
}
}
)
function findMatchingDelimiter(src,starttext,endtext) {
var startpos = 0;
var endpos = src.indexOf(endtext);
// check for nested delimiters
while (src.substring(startpos,endpos-1).indexOf(starttext)!=-1) {
// count number of nested 'starts'
var startcount=0;
var temp = src.substring(startpos,endpos-1);
var pos=temp.indexOf(starttext);
while (pos!=-1) { startcount++; pos=temp.indexOf(starttext,pos+starttext.length);}
// set up to check for additional 'starts' after adjusting endpos
startpos=endpos+endtext.length;
// find endpos for corresponding number of matching 'ends'
while (startcount && endpos!=-1) {
endpos = src.indexOf(endtext,endpos+endtext.length);
startcount--;
}
}
return (endpos==-1)?src.length:endpos;
}
//}}}
//{{{
window.onClickNestedSlider=function(e)
{
if (!e) var e = window.event;
var theTarget = resolveTarget(e);
while (theTarget && theTarget.sliderPanel==undefined) theTarget=theTarget.parentNode;
if (!theTarget) return false;
var theSlider = theTarget.sliderPanel;
var isOpen = theSlider.style.display!="none";
// if SHIFT-CLICK, dock panel first (see [[MoveablePanelPlugin]])
if (e.shiftKey && config.macros.moveablePanel) config.macros.moveablePanel.dock(theSlider,e);
// toggle label
theTarget.innerHTML=isOpen?theTarget.getAttribute("closedText"):theTarget.getAttribute("openedText");
// toggle tooltip
theTarget.setAttribute("title",isOpen?theTarget.getAttribute("closedTip"):theTarget.getAttribute("openedTip"));
// deferred rendering (if needed)
if (theSlider.getAttribute("rendered")=="false") {
var place=theSlider;
if (theSlider.getAttribute("blockquote")=="true")
place=createTiddlyElement(place,"blockquote");
wikify(theSlider.getAttribute("raw"),place);
theSlider.setAttribute("rendered","true");
}
// show/hide the slider
if(config.options.chkAnimate && (!hasClass(theSlider,'floatingPanel') || config.options.chkFloatingSlidersAnimate))
anim.startAnimating(new Slider(theSlider,!isOpen,e.shiftKey || e.altKey,"none"));
else
theSlider.style.display = isOpen ? "none" : "block";
// reset to default width (might have been changed via plugin code)
theSlider.style.width=theSlider.defaultPanelWidth;
// align floater panel position with target button
if (!isOpen && window.adjustSliderPos) window.adjustSliderPos(theSlider.parentNode,theTarget,theSlider);
// if showing panel, set focus to first 'focus-able' element in panel
if (theSlider.style.display!="none") {
var ctrls=theSlider.getElementsByTagName("*");
for (var c=0; c<ctrls.length; c++) {
var t=ctrls[c].tagName.toLowerCase();
if ((t=="input" && ctrls[c].type!="hidden") || t=="textarea" || t=="select")
{ try{ ctrls[c].focus();} catch(err){;} break;}
}
}
var cookie=theTarget.sliderCookie;
if (cookie && cookie.length) {
config.options[cookie]=!isOpen;
if (config.options[cookie]!=theTarget.defOpen) window.saveOptionCookie(cookie);
else window.removeCookie(cookie); // remove cookie if slider is in default display state
}
// prevent SHIFT-CLICK from being processed by browser (opens blank window .. yuck!)
// prevent clicks *within* a slider button from being processed by browser
// but allow plain click to bubble up to page background (to close transients, if any)
if (e.shiftKey || theTarget!=resolveTarget(e))
{ e.cancelBubble=true; if (e.stopPropagation) e.stopPropagation();}
Popup.remove(); // close open popup (if any)
return false;
}
//}}}
//{{{
// click in document background closes transient panels
document.nestedSliders_savedOnClick=document.onclick;
document.onclick=function(ev) { if (!ev) var ev=window.event; var target=resolveTarget(ev);
if (document.nestedSliders_savedOnClick)
var retval=document.nestedSliders_savedOnClick.apply(this,arguments);
// if click was inside a popup .. leave transient panels alone
var p=target; while (p) if (hasClass(p,"popup")) break; else p=p.parentNode;
if (p) return retval;
// if click was inside transient panel (or something contained by a transient panel), leave it alone
var p=target; while (p) {
if ((hasClass(p,"floatingPanel")||hasClass(p,"sliderPanel"))&&p.getAttribute("transient")=="true") break;
p=p.parentNode;
}
if (p) return retval;
// otherwise, find and close all transient panels ..
var all=document.all?document.all:document.getElementsByTagName("DIV");
for (var i=0; i<all.length; i++) {
// if it is not a transient panel, or the click was on the button that opened this panel, don't close it.
if (all[i].getAttribute("transient")!="true" || all[i].button==target) continue;
// otherwise, if the panel is currently visible, close it by clicking it's button
if (all[i].style.display!="none") window.onClickNestedSlider({target:all[i].button})
if (!hasClass(all[i],"floatingPanel")&&!hasClass(all[i],"sliderPanel")) all[i].style.display="none";
}
return retval;
};
//}}}
//{{{
// adjust floating panel position based on button position
if (window.adjustSliderPos==undefined) window.adjustSliderPos=function(place,btn,panel) {
if (hasClass(panel,"floatingPanel") && !hasClass(panel,"undocked")) {
// see [[MoveablePanelPlugin]] for use of 'undocked'
var rightEdge=document.body.offsetWidth-1;
var panelWidth=panel.offsetWidth;
var left=0;
var top=btn.offsetHeight;
if (place.style.position=="relative" && findPosX(btn)+panelWidth>rightEdge) {
left-=findPosX(btn)+panelWidth-rightEdge; // shift panel relative to button
if (findPosX(btn)+left<0) left=-findPosX(btn); // stay within left edge
}
if (place.style.position!="relative") {
var left=findPosX(btn);
var top=findPosY(btn)+btn.offsetHeight;
var p=place; while (p && !hasClass(p,'floatingPanel')) p=p.parentNode;
if (p) { left-=findPosX(p); top-=findPosY(p);}
if (left+panelWidth>rightEdge) left=rightEdge-panelWidth;
if (left<0) left=0;
}
panel.style.left=left+"px"; panel.style.top=top+"px";
}
}
//}}}
//{{{
// TW2.1 and earlier:
// hijack Slider stop handler so overflow is visible after animation has completed
Slider.prototype.coreStop = Slider.prototype.stop;
Slider.prototype.stop = function()
{ this.coreStop.apply(this,arguments); this.element.style.overflow = "visible";}
// TW2.2+
// hijack Morpher stop handler so sliderPanel/floatingPanel overflow is visible after animation has completed
if (version.major+.1*version.minor+.01*version.revision>=2.2) {
Morpher.prototype.coreStop = Morpher.prototype.stop;
Morpher.prototype.stop = function() {
this.coreStop.apply(this,arguments);
var e=this.element;
if (hasClass(e,"sliderPanel")||hasClass(e,"floatingPanel")) {
// adjust panel overflow and position after animation
e.style.overflow = "visible";
if (window.adjustSliderPos) window.adjustSliderPos(e.parentNode,e.button,e);
}
};
}
//}}}
/* |License|https://tiddlytools.com/Classic/#LegalStatements|
|Author|[[Eric Shulman|https://tiddlytools.com/Classic/]]|
|Version|1.4.1 (2008.03.21)|
*/
//{{{
version.extensions.QuoteOfTheDayPlugin= {major: 1, minor: 4, revision: 1, date: new Date(2008,3,21)};
config.macros.QOTD = {
clickTooltip: "click to view another item",
timerTooltip: "auto-timer stopped .. 'mouseout' to restart timer",
timerClickTooltip: "auto-timer stopped .. click to view another item, or 'mouseout' to restart timer",
handler:
function(place,macroName,params) {
var tid=params.shift(); // source tiddler containing HR-separated quotes
var p=params.shift();
var click=true; // allow click for next item
var inline=false; // wrap in slider for animation effect
var random=true; // pick an item at random (default for "quote of the day" usage)
var folder=false; // use local filesystem folder list
var cookie=""; // default to no cookie
var next=0; // default to first item (or random item)
while (p) {
if (p.toLowerCase()=="noclick") var click=false;
if (p.toLowerCase()=="inline") var inline=true;
if (p.toLowerCase()=="norandom") var random=false;
if (p.toLowerCase().substr(0,7)=="cookie:") var cookie=p.substr(8);
if (!isNaN(p)) var delay=p;
p=params.shift();
}
if ((click||delay) && !inline) {
var panel = createTiddlyElement(null,"div",null,"sliderPanel");
panel.style.display="none";
place.appendChild(panel);
var here=createTiddlyElement(panel,click?"a":"span",null,"QOTD");
}
else
var here=createTiddlyElement(place,click?"a":"span",null,"QOTD");
here.id=(new Date()).convertToYYYYMMDDHHMMSSMMM()+Math.random().toString(); // unique ID
// get items from tiddler or file list
var list=store.getTiddlerText(tid,"");
if (!list||!list.length) { // not a tiddler .. maybe an image directory?
var list=this.getImageFileList(tid);
if (!list.length) { // maybe relative path .. fixup and try again
var h=document.location.href;
var p=getLocalPath(decodeURIComponent(h.substr(0,h.lastIndexOf("/")+1)));
var list=this.getImageFileList(p+tid);
}
}
if (!list||!list.length) return false; // no contents .. nothing to display!
here.setAttribute("list",list);
if (delay) here.setAttribute("delay",delay);
here.setAttribute("random",random);
here.setAttribute("cookie",cookie);
if (click) {
here.title=this.clickTooltip
if (!inline) here.style.display="block";
here.setAttribute("href","javascript:;");
here.onclick=function(event)
{ config.macros.QOTD.showNextItem(this);}
}
if (config.options["txtQOTD_"+cookie]!=undefined) next=parseInt(config.options["txtQOTD_"+cookie]);
here.setAttribute("nextItem",next);
config.macros.QOTD.showNextItem(here);
if (delay) {
here.title=click?this.timerClickTooltip:this.timerTooltip
here.onmouseover=function(event)
{ clearTimeout(this.ticker);};
here.onmouseout=function(event)
{ this.ticker=setTimeout("config.macros.QOTD.tick('"+this.id+"')",this.getAttribute("delay"));};
here.ticker=setTimeout("config.macros.QOTD.tick('"+here.id+"')",delay);
}
},
tick: function(id) {
var here=document.getElementById(id); if (!here) return;
config.macros.QOTD.showNextItem(here);
here.ticker=setTimeout("config.macros.QOTD.tick('"+id+"')",here.getAttribute("delay"));
},
showNextItem:
function (here) {
// hide containing slider panel (if any)
var p=here.parentNode;
if (p.className=="sliderPanel") p.style.display = "none"
// get a new quote
var index=here.getAttribute("nextItem");
var items=here.getAttribute("list").split("\n--QOTD--\n");
if (index<0||index>=items.length) index=0;
if (here.getAttribute("random")=="true") index=Math.floor(Math.random()*items.length);
var txt=items[index];
// re-render quote display element, and advance index counter
removeChildren(here); wikify(txt,here);
index++; here.setAttribute("nextItem",index);
var cookie=here.getAttribute("cookie");
if (cookie.length) {
config.options["txtQOTD_"+cookie]=index.toString();
saveOptionCookie("txtQOTD_"+cookie);
}
// redisplay slider panel (if any)
if (p.className=="sliderPanel") {
if(anim && config.options.chkAnimate)
anim.startAnimating(new Slider(p,true,false,"none"));
else p.style.display="block";
}
},
getImageFileList: function(cwd) { // returns HR-separated list of image files
function isImage(fn) {
var ext=fn.substr(fn.length-3,3).toLowerCase();
return ext=="jpg"||ext=="gif"||ext=="png";
}
var files=[];
if (config.browser.isIE) {
cwd=cwd.replace(/\//g,"\\");
// IE uses ActiveX to read filesystem info
var fso = new ActiveXObject("Scripting.FileSystemObject");
if(!fso.FolderExists(cwd)) return [];
var dir=fso.GetFolder(cwd);
for(var f=new Enumerator(dir.Files); !f.atEnd(); f.moveNext())
if (isImage(f.item().path)) files.push("[img[%0]]".format(["file:///"+f.item().path.replace(/\\/g,"/")]));
} else {
// FireFox (mozilla) uses "components" to read filesystem info
// get security access
if(!window.Components) return;
try { netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");}
catch(e) { alert(e.description?e.description:e.toString()); return [];}
// open/validate directory
var file=Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
try { file.initWithPath(cwd);} catch(e) { return [];}
if (!file.exists() || !file.isDirectory()) { return [];}
var folder=file.directoryEntries;
while (folder.hasMoreElements()) {
var f=folder.getNext().QueryInterface(Components.interfaces.nsILocalFile);
if (f instanceof Components.interfaces.nsILocalFile)
if (isImage(f.path)) files.push("[img[%0]]".format(["file:///"+f.path.replace(/\\/g,"/")]));
}
}
return files.join("\n----\n");
}
}
//}}}
/* |License|https://tiddlytools.com/Classic/#LegalStatements|
|Author|Jeremy Sheeley ^^(Maintainer:Simon Baird)(Contributors: Olivier Caleff)^^|
|Version|2.3.10 (2007-06-28)|
*/
//{{{
// ReminderPlugin
version.extensions.ReminderPlugin = {major: 2, minor: 3, revision: 8, date: new Date(2006,3,9), source: "http://remindermacros.tiddlyspot.com/"};
//============================================================================
// Configuration
// Modify this section to change the defaults for leadtime and display strings
config.macros.reminders = {};
config.macros["reminder"] = {};
config.macros["newReminder"] = {};
config.macros["showReminders"] = {};
config.macros["displayTiddlersWithReminders"] = {};
config.macros.reminders["defaultLeadTime"] = [0,6000];
config.macros.reminders["defaultReminderMessage"] = "DIFF: TITLE on DATE ANNIVERSARY";
config.macros.reminders["defaultShowReminderMessage"] = "DIFF: TITLE on DATE ANNIVERSARY -- TIDDLER";
config.macros.reminders["defaultAnniversaryMessage"] = "(DIFF)";
config.macros.reminders["untitledReminder"] = "Untitled Reminder";
config.macros.reminders["noReminderFound"] = "Couldn't find a match for TITLE in the next LEADTIMEUPPER days."
config.macros.reminders["todayString"] = "Today";
config.macros.reminders["tomorrowString"] = "Tomorrow";
config.macros.reminders["ndaysString"] = "DIFF days";
config.macros.reminders["emtpyShowRemindersString"] = "There are no upcoming events";
//============================================================================
// Code
// You should not need to edit anything
// below this. Make sure to edit this tiddler and copy
// the code from the text box, to make sure that
// tiddler rendering doesn't interfere with the copy
// and paste.
//============================================================================
//this object will hold the cache of reminders, so that we don't
//recompute the same reminder over again.
var reminderCache = {};
config.macros.showReminders.handler = function showReminders(place,macroName,params)
{
var now = new Date().getMidnight();
var paramHash = {};
var leadtime = [0,14];
paramHash = getParamsForReminder(params);
var bProvidedDate = (paramHash["year"] != null) ||
(paramHash["month"] != null) ||
(paramHash["day"] != null) ||
(paramHash["dayofweek"] != null);
if (paramHash["leadtime"] != null)
{
leadtime = paramHash["leadtime"];
if (bProvidedDate)
{
//If they've entered a day, we need to make
//sure to find it. We'll reset the
//leadtime a few lines down.
paramHash["leadtime"] = [-10000, 10000];
}
}
var matchedDate = now;
if (bProvidedDate)
{
var leadTimeLowerBound = new Date().getMidnight().addDays(paramHash["leadtime"][0]);
var leadTimeUpperBound = new Date().getMidnight().addDays(paramHash["leadtime"][1]);
matchedDate = findDateForReminder(paramHash, new Date().getMidnight(), leadTimeLowerBound, leadTimeUpperBound);
}
var arr = findTiddlersWithReminders(matchedDate, leadtime, paramHash["tag"], paramHash["limit"]);
var elem = createTiddlyElement(place,"span",null,null, null);
var mess = "";
if (arr.length == 0)
{
mess += config.macros.reminders.emtpyShowRemindersString;
}
for (var j = 0; j < arr.length; j++)
{
if (paramHash["format"] != null)
{
arr[j]["params"]["format"] = paramHash["format"];
}
else
{
arr[j]["params"]["format"] = config.macros.reminders["defaultShowReminderMessage"];
}
mess += getReminderMessageForDisplay(arr[j]["diff"], arr[j]["params"], arr[j]["matchedDate"], arr[j]["tiddler"]);
mess += "\n";
}
wikify(mess, elem, null, null);
};
config.macros.displayTiddlersWithReminders.handler = function displayTiddlersWithReminders(place,macroName,params)
{
var now = new Date().getMidnight();
var paramHash = {};
var leadtime = [0,14];
paramHash = getParamsForReminder(params);
var bProvidedDate = (paramHash["year"] != null) ||
(paramHash["month"] != null) ||
(paramHash["day"] != null) ||
(paramHash["dayofweek"] != null);
if (paramHash["leadtime"] != null)
{
leadtime = paramHash["leadtime"];
if (bProvidedDate)
{
//If they've entered a day, we need to make
//sure to find it. We'll reset the leadtime
//a few lines down.
paramHash["leadtime"] = [-10000,10000];
}
}
var matchedDate = now;
if (bProvidedDate)
{
var leadTimeLowerBound = new Date().getMidnight().addDays(paramHash["leadtime"][0]);
var leadTimeUpperBound = new Date().getMidnight().addDays(paramHash["leadtime"][1]);
matchedDate = findDateForReminder(paramHash, new Date().getMidnight(), leadTimeLowerBound, leadTimeUpperBound);
}
var arr = findTiddlersWithReminders(matchedDate, leadtime, paramHash["tag"], paramHash["limit"]);
for (var j = 0; j < arr.length; j++)
{
displayTiddler(null, arr[j]["tiddler"], 0, null, false, false, false);
}
};
config.macros.reminder.handler = function reminder(place,macroName,params)
{
var dateHash = getParamsForReminder(params);
if (dateHash["hidden"] != null)
{
return;
}
var leadTime = dateHash["leadtime"];
if (leadTime == null)
{
leadTime = config.macros.reminders["defaultLeadTime"];
}
var leadTimeLowerBound = new Date().getMidnight().addDays(leadTime[0]);
var leadTimeUpperBound = new Date().getMidnight().addDays(leadTime[1]);
var matchedDate = findDateForReminder(dateHash, new Date().getMidnight(), leadTimeLowerBound, leadTimeUpperBound);
if (!store.getTiddler)
{
store.getTiddler=function(title) {return this.tiddlers[title];};
}
var title = window.story.findContainingTiddler(place).id.substr(7);
if (matchedDate != null)
{
var diff = matchedDate.getDifferenceInDays(new Date().getMidnight());
var elem = createTiddlyElement(place,"span",null,null, null);
var mess = getReminderMessageForDisplay(diff, dateHash, matchedDate, title);
wikify(mess, elem, null, null);
}
else
{
createTiddlyElement(place,"span",null,null, config.macros.reminders["noReminderFound"].replace("TITLE", dateHash["title"]).replace("LEADTIMEUPPER", leadTime[1]).replace("LEADTIMELOWER", leadTime[0]).replace("TIDDLERNAME", title).replace("TIDDLER", "[[" + title + "]]") );
}
};
config.macros.newReminder.handler = function newReminder(place,macroName,params)
{
var today=new Date().getMidnight();
var formstring = '<html><form>Year: <select name="year"><option value="">Every year</option>';
for (var i = 0; i < 5; i++)
{
formstring += '<option' + ((i == 0) ? ' selected' : '') + ' value="' + (today.getFullYear() +i) + '">' + (today.getFullYear() + i) + '</option>';
}
formstring += '</select> Month:<select name="month"><option value="">Every month</option>';
for (i = 0; i < 12; i++)
{
formstring += '<option' + ((i == today.getMonth()) ? ' selected' : '') + ' value="' + (i+1) + '">' + config.messages.dates.months[i] + '</option>';
}
formstring += '</select> Day:<select name="day"><option value="">Every day</option>';
for (i = 1; i < 32; i++)
{
formstring += '<option' + ((i == (today.getDate() )) ? ' selected' : '') + ' value="' + i + '">' + i + '</option>';
}
formstring += '</select> Reminder Title:<input type="text" size="40" name="title" value="please enter a title" onfocus="this.select();"><input type="button" value="ok" onclick="addReminderToTiddler(this.form)"></form></html>';
var panel = config.macros.slider.createSlider(place,null,"New Reminder","Open a form to add a new reminder to this tiddler");
wikify(formstring ,panel,null,store.getTiddler(params[1]));
};
// onclick: process input and insert reminder at 'marker'
window.addReminderToTiddler = function(form) {
if (!store.getTiddler)
{
store.getTiddler=function(title) {return this.tiddlers[title];};
}
var title = window.story.findContainingTiddler(form).id.substr(7);
var tiddler=store.getTiddler(title);
var txt='\n<<reminder ';
if (form.year.value != "")
txt += 'year:'+form.year.value + ' ';
if (form.month.value != "")
txt += 'month:'+form.month.value + ' ';
if (form.day.value != "")
txt += 'day:'+form.day.value + ' ';
txt += 'title:"'+form.title.value+'" ';
txt +='>>';
tiddler.set(null,tiddler.text + txt);
window.story.refreshTiddler(title,1,true);
store.setDirty(true);
};
function hasTag(tiddlerTags, tagFilters)
{
//Make sure we respond well to empty tiddlerTaglists or tagFilterlists
if (tagFilters.length==0 || tiddlerTags.length==0)
{
return true;
}
var bHasTag = false;
/*bNoPos says: "'till now there has been no check using a positive filter"
Imagine a filterlist consisting of 1 negative filter:
If the filter isn't matched, we want hasTag to be true.
Yet bHasTag is still false ('cause only positive filters cause bHasTag to change)
If no positive filters are present bNoPos is true, and no negative filters are matched so we have not returned false
Thus: hasTag returns true.
If at any time a positive filter is encountered, we want at least one of the tags to match it, so we turn bNoPos to false, which
means bHasTag must be true for hasTag to return true*/
var bNoPos=true;
for (var t3 = 0; t3 < tagFilters.length; t3++)
{
for(var t2=0; t2<tiddlerTags.length; t2++)
{
if (tagFilters[t3].length > 1 && tagFilters[t3].charAt(0) == '!')
{
if (tiddlerTags[t2] == tagFilters[t3].substring(1))
{ //If at any time a negative filter is matched, we return false return false;
}
}
else
{
if (bNoPos)
{ //We encountered the first positive filter bNoPos=false;
}
if (tiddlerTags[t2] == tagFilters[t3])
{ //A positive filter is matched. As long as no negative filter is matched, hasTag will return true bHasTag=true;
}
}
}
}
return (bNoPos || bHasTag);
};
//This function searches all tiddlers for the reminder //macro. It is intended that other plugins (like //calendar) will use this function to query for
//upcoming reminders.
//The arguments to this function filter out reminders //based on when they will fire.
//ARGUMENTS:
//baseDate is the date that is used as "now".
//leadtime is a two element int array, with leadtime[0]
// as the lower bound and leadtime[1] as the
// upper bound. A reasonable default is [0,14]
//tags is a space-separated list of tags to use to filter
// tiddlers. If a tag name begins with an !, then
// only tiddlers which do not have that tag will
// be considered. For example "examples holidays"
// will search for reminders in any tiddlers that
// are tagged with examples or holidays and
// "!examples !holidays" will search for reminders
// in any tiddlers that are not tagged with
// examples or holidays. Pass in null to search
// all tiddlers.
//limit. If limit is null, individual reminders can
// override the leadtime specified earlier.
// Pass in 1 in order to override that behavior.
window.findTiddlersWithReminders = function findTiddlersWithReminders(baseDate, leadtime, tags, limit)
{
//function(searchRegExp,sortField,excludeTag)
// var macroPattern = "<<([^>\\]+)(?:\\*)([^>]*)>>";
var macroPattern = "<<(reminder)(.*)>>";
var macroRegExp = new RegExp(macroPattern,"mg");
var matches = store.search(macroRegExp,"title","");
var arr = [];
var tagsArray = null;
if (tags != null)
{
// tagsArray = tags.split(" ");
tagsArray = tags.readBracketedList(); // allows tags with spaces. thanks Robin Summerhill, 4-Oct-06.
}
for(var t=matches.length-1; t>=0; t--)
{
if (tagsArray != null)
{
//If they specified tags to filter on, and this tiddler doesn't
//match, skip it entirely.
if ( ! hasTag(matches[t].tags, tagsArray))
{
continue;
}
}
var targetText = matches[t].text;
do {
// Get the next formatting match
var formatMatch = macroRegExp.exec(targetText);
if(formatMatch && formatMatch[1] != null && formatMatch[1].toLowerCase() == "reminder")
{
//Find the matching date.
var params = formatMatch[2] != null ? formatMatch[2].readMacroParams() : {};
var dateHash = getParamsForReminder(params);
if (limit != null || dateHash["leadtime"] == null)
{ if (leadtime == null) dateHash["leadtime"] = leadtime; else { dateHash["leadtime"] = []; dateHash["leadtime"][0] = leadtime[0]; dateHash["leadtime"][1] = leadtime[1];}
}
if (dateHash["leadtime"] == null) dateHash["leadtime"] = config.macros.reminders["defaultLeadTime"];
var leadTimeLowerBound = baseDate.addDays(dateHash["leadtime"][0]);
var leadTimeUpperBound = baseDate.addDays(dateHash["leadtime"][1]);
var matchedDate = findDateForReminder(dateHash, baseDate, leadTimeLowerBound, leadTimeUpperBound);
while (matchedDate != null)
{ var hash = {}; hash["diff"] = matchedDate.getDifferenceInDays(baseDate); hash["matchedDate"] = new Date(matchedDate.getFullYear(), matchedDate.getMonth(), matchedDate.getDate(), 0, 0); hash["params"] = cloneParams(dateHash); hash["tiddler"] = matches[t].title; hash["tags"] = matches[t].tags; arr.pushUnique(hash);
if (dateHash["recurdays"] != null || (dateHash["year"] == null))
{
leadTimeLowerBound = leadTimeLowerBound.addDays(matchedDate.getDifferenceInDays(leadTimeLowerBound)+ 1); matchedDate = findDateForReminder(dateHash, baseDate, leadTimeLowerBound, leadTimeUpperBound);
}
else matchedDate = null;
}
}
}while(formatMatch);
}
if(arr.length > 1) //Sort the array by number of days remaining.
{
arr.sort(function (a,b) {if(a["diff"] == b["diff"]) {return(0);} else {return (a["diff"] < b["diff"]) ? -1 : +1;} });
}
return arr;
};
//This function takes the reminder macro parameters and
//generates the string that is used for display.
//This function is not intended to be called by
//other plugins.
window.getReminderMessageForDisplay= function getReminderMessageForDisplay(diff, params, matchedDate, tiddlerTitle)
{
var anniversaryString = "";
var reminderTitle = params["title"];
if (reminderTitle == null)
{
reminderTitle = config.macros.reminders["untitledReminder"];
}
if (params["firstyear"] != null)
{
anniversaryString = config.macros.reminders["defaultAnniversaryMessage"].replace("DIFF", (matchedDate.getFullYear() - params["firstyear"]));
}
var mess = "";
var diffString = "";
if (diff == 0)
{
diffString = config.macros.reminders["todayString"];
}
else if (diff == 1)
{
diffString = config.macros.reminders["tomorrowString"];
}
else
{
diffString = config.macros.reminders["ndaysString"].replace("DIFF", diff);
}
var format = config.macros.reminders["defaultReminderMessage"];
if (params["format"] != null)
{
format = params["format"];
}
mess = format;
//HACK! -- Avoid replacing DD in TIDDLER with the date
mess = mess.replace(/TIDDLER/g, "TIDELER");
mess = matchedDate.formatStringDateOnly(mess);
mess = mess.replace(/TIDELER/g, "TIDDLER");
if (tiddlerTitle != null)
{
mess = mess.replace(/TIDDLERNAME/g, tiddlerTitle);
mess = mess.replace(/TIDDLER/g, "[[" + tiddlerTitle + "]]");
}
mess = mess.replace("DIFF", diffString).replace("TITLE", reminderTitle).replace("DATE", matchedDate.formatString("DDD MMM DD, YYYY")).replace("ANNIVERSARY", anniversaryString);
return mess;
};
// Parse out the macro parameters into a hashtable. This
// handles the arguments for reminder, showReminders and
// displayTiddlersWithReminders.
window.getParamsForReminder = function getParamsForReminder(params)
{
var dateHash = {};
var type = "";
var num = 0;
var title = "";
for(var t=0; t<params.length; t++)
{
var split = params[t].split(":");
type = split[0].toLowerCase();
var value = split[1];
for (var i=2; i < split.length; i++)
{
value += ":" + split[i];
}
if (type == "nolinks" || type == "limit" || type == "hidden")
{
num = 1;
}
else if (type == "leadtime")
{
var leads = value.split(" ..");
if (leads.length == 1)
{
leads[1]= leads[0];
leads[0] = 0;
}
leads[0] = parseInt(leads[0], 10);
leads[1] = parseInt(leads[1], 10);
num = leads;
}
else if (type == "offsetdayofweek")
{
if (value.substr(0,1) == "-")
{
dateHash["negativeOffsetDayOfWeek"] = 1;
value = value.substr(1);
}
num = parseInt(value, 10);
}
else if (type != "title" && type != "tag" && type != "format")
{
num = parseInt(value, 10);
}
else
{
title = value;
t++;
while (title.substr(0,1) == '"' && title.substr(title.length - 1,1) != '"' && params[t] != undefined)
{
title += " " + params[t++];
}
//Trim off the leading and trailing quotes
if (title.substr(0,1) == "\"" && title.substr(title.length - 1,1)== "\"")
{
title = title.substr(1, title.length - 2);
t--;
}
num = title;
}
dateHash[type] = num;
}
//date is synonymous with day
if (dateHash["day"] == null)
{
dateHash["day"] = dateHash["date"];
}
return dateHash;
};
//This function finds the date specified in the reminder
//parameters. It will return null if no match can be
//found. This function is not intended to be used by
//other plugins.
window.findDateForReminder= function findDateForReminder( dateHash, baseDate, leadTimeLowerBound, leadTimeUpperBound)
{
if (baseDate == null)
{
baseDate = new Date().getMidnight();
}
var hashKey = baseDate.convertToYYYYMMDDHHMM();
for (var k in dateHash)
{
hashKey += "," + k + "|" + dateHash[k];
}
hashKey += "," + leadTimeLowerBound.convertToYYYYMMDDHHMM();
hashKey += "," + leadTimeUpperBound.convertToYYYYMMDDHHMM();
if (reminderCache[hashKey] == null)
{
//If we don't find a match in this run, then we will
//cache that the reminder can't be matched.
reminderCache[hashKey] = false;
}
else if (reminderCache[hashKey] == false)
{
//We've already tried this date and failed
return null;
}
else
{
return reminderCache[hashKey];
}
var bOffsetSpecified = dateHash["offsetyear"] != null ||
dateHash["offsetmonth"] != null ||
dateHash["offsetday"] != null ||
dateHash["offsetdayofweek"] != null ||
dateHash["recurdays"] != null;
// If we are matching the base date for a dayofweek offset, look for the base date a
//little further back.
var tmp1leadTimeLowerBound = leadTimeLowerBound;
if ( dateHash["offsetdayofweek"] != null)
{
tmp1leadTimeLowerBound = leadTimeLowerBound.addDays(-6);
}
var matchedDate = baseDate.findMatch(dateHash, tmp1leadTimeLowerBound, leadTimeUpperBound);
if (matchedDate != null)
{
var newMatchedDate = matchedDate;
if (dateHash["recurdays"] != null)
{
while (newMatchedDate.getTime() < leadTimeLowerBound.getTime())
{
newMatchedDate = newMatchedDate.addDays(dateHash["recurdays"]);
}
}
else if (dateHash["offsetyear"] != null ||
dateHash["offsetmonth"] != null ||
dateHash["offsetday"] != null ||
dateHash["offsetdayofweek"] != null)
{
var tmpdateHash = cloneParams(dateHash);
tmpdateHash["year"] = dateHash["offsetyear"];
tmpdateHash["month"] = dateHash["offsetmonth"];
tmpdateHash["day"] = dateHash["offsetday"];
tmpdateHash["dayofweek"] = dateHash["offsetdayofweek"];
var tmpleadTimeLowerBound = leadTimeLowerBound;
var tmpleadTimeUpperBound = leadTimeUpperBound;
if (tmpdateHash["offsetdayofweek"] != null)
{
if (tmpdateHash["negativeOffsetDayOfWeek"] == 1)
{
tmpleadTimeLowerBound = matchedDate.addDays(-6);
tmpleadTimeUpperBound = matchedDate;
}
else
{
tmpleadTimeLowerBound = matchedDate;
tmpleadTimeUpperBound = matchedDate.addDays(6);
}
}
newMatchedDate = matchedDate.findMatch(tmpdateHash, tmpleadTimeLowerBound, tmpleadTimeUpperBound);
//The offset couldn't be matched. return null.
if (newMatchedDate == null)
{
return null;
}
}
if (newMatchedDate.isBetween(leadTimeLowerBound, leadTimeUpperBound))
{
reminderCache[hashKey] = newMatchedDate;
return newMatchedDate;
}
}
return null;
};
//This does much the same job as findDateForReminder, but
//this one doesn't deal with offsets or recurring
//reminders.
Date.prototype.findMatch = function findMatch(dateHash, leadTimeLowerBound, leadTimeUpperBound)
{
var bSpecifiedYear = (dateHash["year"] != null);
var bSpecifiedMonth = (dateHash["month"] != null);
var bSpecifiedDay = (dateHash["day"] != null);
var bSpecifiedDayOfWeek = (dateHash["dayofweek"] != null);
if (bSpecifiedYear && bSpecifiedMonth && bSpecifiedDay)
{
return new Date(dateHash["year"], dateHash["month"]-1, dateHash["day"], 0, 0);
}
var bMatchedYear = !bSpecifiedYear;
var bMatchedMonth = !bSpecifiedMonth;
var bMatchedDay = !bSpecifiedDay;
var bMatchedDayOfWeek = !bSpecifiedDayOfWeek;
if (bSpecifiedDay && bSpecifiedMonth && !bSpecifiedYear && !bSpecifiedDayOfWeek)
{
//Shortcut -- First try this year. If it's too small, try next year.
var tmpMidnight = this.getMidnight();
var tmpDate = new Date(this.getFullYear(), dateHash["month"]-1, dateHash["day"], 0,0);
if (tmpDate.getTime() < leadTimeLowerBound.getTime())
{
tmpDate = new Date((this.getFullYear() + 1), dateHash["month"]-1, dateHash["day"], 0,0);
}
if ( tmpDate.isBetween(leadTimeLowerBound, leadTimeUpperBound))
{
return tmpDate;
}
else
{
return null;
}
}
var newDate = leadTimeLowerBound;
while (newDate.isBetween(leadTimeLowerBound, leadTimeUpperBound))
{
var tmp = testDate(newDate, dateHash, bSpecifiedYear, bSpecifiedMonth, bSpecifiedDay, bSpecifiedDayOfWeek);
if (tmp != null)
return tmp;
newDate = newDate.addDays(1);
}
};
function testDate(testMe, dateHash, bSpecifiedYear, bSpecifiedMonth, bSpecifiedDay, bSpecifiedDayOfWeek)
{
var bMatchedYear = !bSpecifiedYear;
var bMatchedMonth = !bSpecifiedMonth;
var bMatchedDay = !bSpecifiedDay;
var bMatchedDayOfWeek = !bSpecifiedDayOfWeek;
if (bSpecifiedYear)
{
bMatchedYear = (dateHash["year"] == testMe.getFullYear());
}
if (bSpecifiedMonth)
{
bMatchedMonth = ((dateHash["month"] - 1) == testMe.getMonth() );
}
if (bSpecifiedDay)
{
bMatchedDay = (dateHash["day"] == testMe.getDate());
}
if (bSpecifiedDayOfWeek)
{
bMatchedDayOfWeek = (dateHash["dayofweek"] == testMe.getDay());
}
if (bMatchedYear && bMatchedMonth && bMatchedDay && bMatchedDayOfWeek)
{
return testMe;
}
};
//Returns true if the date is in between two given dates
Date.prototype.isBetween = function isBetween(lowerBound, upperBound)
{
return (this.getTime() >= lowerBound.getTime() && this.getTime() <= upperBound.getTime());
}
//Return a new date, with the time set to midnight (0000)
Date.prototype.getMidnight = function getMidnight()
{
return new Date(this.getFullYear(), this.getMonth(), this.getDate(), 0, 0);
};
// Add the specified number of days to a date.
Date.prototype.addDays = function addDays(numberOfDays)
{
return new Date(this.getFullYear(), this.getMonth(), this.getDate() + numberOfDays, 0, 0);
};
//Return the number of days between two dates.
Date.prototype.getDifferenceInDays = function getDifferenceInDays(otherDate)
{
//I have to do it this way, because this way ignores daylight savings
var tmpDate = this.addDays(0);
if (this.getTime() > otherDate.getTime())
{
var i = 0;
for (i = 0; tmpDate.getTime() > otherDate.getTime(); i++)
{
tmpDate = tmpDate.addDays(-1);
}
return i;
}
else
{
var i = 0;
for (i = 0; tmpDate.getTime() < otherDate.getTime(); i++)
{
tmpDate = tmpDate.addDays(1);
}
return i * -1;
}
return 0;
};
function cloneParams(what) {
var tmp = {};
for (var i in what) {
tmp[i] = what[i];
}
return tmp;
}
// Substitute date components into a string
Date.prototype.formatStringDateOnly = function formatStringDateOnly(template)
{
template = template.replace("YYYY",this.getFullYear());
template = template.replace("YY",String.zeroPad(this.getFullYear()-2000,2));
template = template.replace("MMM",config.messages.dates.months[this.getMonth()]);
template = template.replace("0MM",String.zeroPad(this.getMonth()+1,2));
template = template.replace("MM",this.getMonth()+1);
template = template.replace("DDD",config.messages.dates.days[this.getDay()]);
template = template.replace("0DD",String.zeroPad(this.getDate(),2));
template = template.replace("DD",this.getDate());
return template;
};
//}}}
/% |License|https://tiddlytools.com/Classic/#LegalStatements|
|Author|[[Eric Shulman|https://tiddlytools.com/Classic/]] ^^//(Transclusion)//^^|
|Version|2.0.0 (2009.09.24)|
!end
!show
<<tiddler {{
var here=story.findContainingTiddler(place); if (here) {
var nodes=here.getElementsByTagName("*");
for (var i=0; i<nodes.length; i++) if (hasClass(nodes[i],"title"))
{ removeChildren(nodes[i]); wikify("$1",nodes[i]); break;}
}
'';}}>>
!end
%/<<tiddler {{'.ReplaceTiddlerTitle##'+('$1'=='$'+'1'?'info':'show')}} with: [[$1]]>>
/* |License|https://tiddlytools.com/Classic/#LegalStatements|
|Author|[[Eric Shulman|https://tiddlytools.com/Classic/]]|
|Version|2.9.7 (2010.11.30)|
*/
//{{{
version.extensions.SinglePageModePlugin= {major: 2, minor: 9, revision: 7, date: new Date(2010,11,30)};
//}}}
//{{{
config.paramifiers.SPM = { onstart: function(v) {
config.options.chkSinglePageMode=eval(v);
if (config.options.chkSinglePageMode && config.options.chkSinglePagePermalink && !config.browser.isSafari) {
config.lastURL = window.location.hash;
if (!config.SPMTimer) config.SPMTimer=window.setInterval(function() {checkLastURL();},1000);
}
} };
//}}}
//{{{
if (config.options.chkSinglePageMode==undefined)
config.options.chkSinglePageMode=false;
if (config.options.chkSinglePagePermalink==undefined)
config.options.chkSinglePagePermalink=true;
if (config.options.chkSinglePageKeepFoldedTiddlers==undefined)
config.options.chkSinglePageKeepFoldedTiddlers=false;
if (config.options.chkSinglePageKeepEditedTiddlers==undefined)
config.options.chkSinglePageKeepEditedTiddlers=false;
if (config.options.chkTopOfPageMode==undefined)
config.options.chkTopOfPageMode=false;
if (config.options.chkBottomOfPageMode==undefined)
config.options.chkBottomOfPageMode=false;
if (config.options.chkSinglePageAutoScroll==undefined)
config.options.chkSinglePageAutoScroll=false;
//}}}
//{{{
config.SPMTimer = 0;
config.lastURL = window.location.hash;
function checkLastURL()
{
if (!config.options.chkSinglePageMode)
{ window.clearInterval(config.SPMTimer); config.SPMTimer=0; return;}
if (config.lastURL == window.location.hash) return; // no change in hash
var tids=decodeURIComponent(window.location.hash.substr(1)).readBracketedList();
if (tids.length==1) // permalink (single tiddler in URL)
story.displayTiddler(null,tids[0]);
else { // restore permaview or default view
config.lastURL = window.location.hash;
if (!tids.length) tids=store.getTiddlerText("DefaultTiddlers").readBracketedList();
story.closeAllTiddlers();
story.displayTiddlers(null,tids);
}
}
if (Story.prototype.SPM_coreDisplayTiddler==undefined)
Story.prototype.SPM_coreDisplayTiddler=Story.prototype.displayTiddler;
Story.prototype.displayTiddler = function(srcElement,tiddler,template,animate,slowly)
{
var title=(tiddler instanceof Tiddler)?tiddler.title:tiddler;
var tiddlerElem=story.getTiddler(title); // ==null unless tiddler is already displayed
var opt=config.options;
var single=opt.chkSinglePageMode && !startingUp;
var top=opt.chkTopOfPageMode && !startingUp;
var bottom=opt.chkBottomOfPageMode && !startingUp;
if (single) {
story.forEachTiddler(function(tid,elem) {
// skip current tiddler and, optionally, tiddlers that are folded.
if ( tid==title
|| (opt.chkSinglePageKeepFoldedTiddlers && elem.getAttribute("folded")=="true"))
return;
// if a tiddler is being edited, ask before closing
if (elem.getAttribute("dirty")=="true") {
if (opt.chkSinglePageKeepEditedTiddlers) return;
// if tiddler to be displayed is already shown, then leave active tiddler editor as is
// (occurs when switching between view and edit modes)
if (tiddlerElem) return;
// otherwise, ask for permission
var msg="'"+tid+"' is currently being edited.\n\n";
msg+="Press OK to save and close this tiddler\nor press Cancel to leave it opened";
if (!confirm(msg)) return; else story.saveTiddler(tid);
}
story.closeTiddler(tid);
});
}
else if (top)
arguments[0]=null;
else if (bottom)
arguments[0]="bottom";
if (single && opt.chkSinglePagePermalink && !config.browser.isSafari) {
window.location.hash = encodeURIComponent(String.encodeTiddlyLink(title));
config.lastURL = window.location.hash;
document.title = wikifyPlain("SiteTitle") + " - " + title;
if (!config.SPMTimer) config.SPMTimer=window.setInterval(function() {checkLastURL();},1000);
}
if (tiddlerElem && tiddlerElem.getAttribute("dirty")=="true") { // editing .. move tiddler without re-rendering
var isTopTiddler=(tiddlerElem.previousSibling==null);
if (!isTopTiddler && (single || top))
tiddlerElem.parentNode.insertBefore(tiddlerElem,tiddlerElem.parentNode.firstChild);
else if (bottom)
tiddlerElem.parentNode.insertBefore(tiddlerElem,null);
else this.SPM_coreDisplayTiddler.apply(this,arguments); // let CORE render tiddler
} else
this.SPM_coreDisplayTiddler.apply(this,arguments); // let CORE render tiddler
var tiddlerElem=story.getTiddler(title);
if (tiddlerElem&&opt.chkSinglePageAutoScroll) {
// scroll to top of page or top of tiddler
var isTopTiddler=(tiddlerElem.previousSibling==null);
var yPos=isTopTiddler?0:ensureVisible(tiddlerElem);
// if animating, defer scroll until after animation completes
var delay=opt.chkAnimate?config.animDuration+10:0;
setTimeout("window.scrollTo(0,"+yPos+")",delay);
}
}
if (Story.prototype.SPM_coreDisplayTiddlers==undefined)
Story.prototype.SPM_coreDisplayTiddlers=Story.prototype.displayTiddlers;
Story.prototype.displayTiddlers = function() {
// suspend single/top/bottom modes when showing multiple tiddlers
var opt=config.options;
var saveSPM=opt.chkSinglePageMode; opt.chkSinglePageMode=false;
var saveTPM=opt.chkTopOfPageMode; opt.chkTopOfPageMode=false;
var saveBPM=opt.chkBottomOfPageMode; opt.chkBottomOfPageMode=false;
this.SPM_coreDisplayTiddlers.apply(this,arguments);
opt.chkBottomOfPageMode=saveBPM;
opt.chkTopOfPageMode=saveTPM;
opt.chkSinglePageMode=saveSPM;
}
//}}}
/*** |License|Creative Commons Attribution-ShareAlike 3.0 License - http://creativecommons.org/licenses/by-sa/3.0/|
|Author|Lewcid/Saq Imtiaz|
|Version|2.02 (2008.01.25)|
|TableSortingPlugin|Saq Imtiaz (lewcid)|v2.02_20080125|
|[[Creative Commons Attribution-ShareAlike 3.0 License|http://creativecommons.org/licenses/by-sa/3.0/]]| ***/
// /%
//!BEGIN-PLUGIN-CODE
config.tableSorting = {
darrow: "\u2193",
uarrow: "\u2191",
getText : function (o) {
var p = o.cells[SORT_INDEX];
return p.innerText || p.textContent || '';
},
sortTable : function (o,rev) {
SORT_INDEX = o.getAttribute("index");
var c = config.tableSorting;
var T = findRelated(o.parentNode,"TABLE");
if(T.tBodies[0].rows.length<=1)
return;
var itm = "";
var i = 0;
while (itm == "" && i < T.tBodies[0].rows.length) {
itm = c.getText(T.tBodies[0].rows[i]).trim();
i++;
}
if (itm == "")
return;
var r = [];
var S = o.getElementsByTagName("span")[0];
c.fn = c.sortAlpha;
if(!isNaN(Date.parse(itm)))
c.fn = c.sortDate;
else if(itm.match(/^[$|£|€|\+|\-]{0,1}\d*\.{0,1}\d+$/))
c.fn = c.sortNumber;
else if(itm.match(/^\d*\.{0,1}\d+[K|M|G]{0,1}b$/))
c.fn = c.sortFile;
for(i=0; i<T.tBodies[0].rows.length; i++) {
r[i]=T.tBodies[0].rows[i];
}
r.sort(c.reSort);
if(S.firstChild.nodeValue==c.darrow || rev) {
r.reverse();
S.firstChild.nodeValue=c.uarrow;
}
else
S.firstChild.nodeValue=c.darrow;
var thead = T.getElementsByTagName('thead')[0];
var headers = thead.rows[thead.rows.length-1].cells;
for(var k=0; k<headers.length; k++) {
if(!hasClass(headers[k],"nosort"))
addClass(headers[k].getElementsByTagName("span")[0],"hidden");
}
removeClass(S,"hidden");
for(i=0; i<r.length; i++) {
T.tBodies[0].appendChild(r[i]);
c.stripe(r[i],i);
for(var j=0; j<r[i].cells.length;j++){
removeClass(r[i].cells[j],"sortedCol");
}
addClass(r[i].cells[SORT_INDEX],"sortedCol");
}
},
stripe : function (e,i){
var cl = ["oddRow","evenRow"];
i&1? cl.reverse() : cl;
removeClass(e,cl[1]);
addClass(e,cl[0]);
},
sortNumber : function(v) {
var x = parseFloat(this.getText(v).replace(/[^0-9.-]/g,''));
return isNaN(x)? 0: x;
},
sortDate : function(v) {
return Date.parse(this.getText(v));
},
sortAlpha : function(v) {
return this.getText(v).toLowerCase();
},
sortFile : function(v) {
var j, q = config.messages.sizeTemplates, s = this.getText(v);
for (var i=0; i<q.length; i++) {
if ((j = s.toLowerCase().indexOf(q[i].template.replace("%0\u00a0","").toLowerCase())) != -1)
return q[i].unit * s.substr(0,j);
}
return parseFloat(s);
},
reSort : function(a,b){
var c = config.tableSorting;
var aa = c.fn(a);
var bb = c.fn(b);
return ((aa==bb)? 0 : ((aa<bb)? -1:1));
}
};
Story.prototype.tSort_refreshTiddler = Story.prototype.refreshTiddler;
Story.prototype.refreshTiddler = function(title,template,force,customFields,defaultText){
var elem = this.tSort_refreshTiddler.apply(this,arguments);
if(elem){
var tables = elem.getElementsByTagName("TABLE");
var c = config.tableSorting;
for(var i=0; i<tables.length; i++){
if(hasClass(tables[i],"sortable")){
var x = null, rev, table = tables[i], thead = table.getElementsByTagName('thead')[0], headers = thead.rows[thead.rows.length-1].cells;
for (var j=0; j<headers.length; j++){
var h = headers[j];
if (hasClass(h,"nosort"))
continue;
h.setAttribute("index",j);
h.onclick = function(){c.sortTable(this); return false;};
h.ondblclick = stopEvent;
if(h.getElementsByTagName("span").length == 0)
createTiddlyElement(h,"span",null,"hidden",c.uarrow);
if(!x && hasClass(h,"autosort")) {
x = j;
rev = hasClass(h,"reverse");
}
}
if(x)
c.sortTable(headers[x],rev);
}
}
}
return elem;
};
setStylesheet("table.sortable span.hidden {visibility:hidden;}\n"+
"table.sortable thead {cursor:pointer;}\n"+
"table.sortable .nosort {cursor:default;}\n"+
"table.sortable td.sortedCol {background:#ffc;}","TableSortingPluginStyles");
function stopEvent(e){ var ev = e? e : window.event; ev.cancelBubble = true; if (ev.stopPropagation) ev.stopPropagation(); return false;}
config.macros.nosort={ handler : function(place){ addClass(place,"nosort");} };
config.macros.autosort={ handler : function(place,m,p,w,pS){ addClass(place,"autosort"+" "+pS);} };
//!END-PLUGIN-CODE
// %/
/% |License|https://tiddlytools.com/Classic/#LegalStatements|
|Author|[[Eric Shulman|https://tiddlytools.com/Classic/]] ^^//(Transclusion)//^^|
|Version|2.0.0 (2009.09.26)|
!show
<<tiddler {{
var co=config.options;
if (co.chkShowLeftSidebar===undefined) co.chkShowLeftSidebar=true;
var mm=document.getElementById('mainMenu');
var da=document.getElementById('displayArea');
if (mm) {
mm.style.display=co.chkShowLeftSidebar?'block':'none';
da.style.marginLeft=co.chkShowLeftSidebar?'':'1em';
}
'';}}>><html><nowiki><a href='javascript:;' title="$2"
onmouseover="
this.href='javascript:void(eval(decodeURIComponent(%22(function(){try{('encodeURIComponent(encodeURIComponent(this.onclick))')()}catch(e){alert(e.description?e.description:e.toString())}})()%22)))';"
onclick="
var co=config.options; var opt='chkShowLeftSidebar'; var show=co[opt]=!co[opt];
var mm=document.getElementById('mainMenu'); var da=document.getElementById('displayArea');
if (mm) { mm.style.display=show?'block':'none'; da.style.marginLeft=show?'':'1em';}
saveOptionCookie(opt);
var labelShow=co.txtToggleLeftSideBarLabelShow||'►';
var labelHide=co.txtToggleLeftSideBarLabelHide||'◄';
if (this.innerHTML==labelShow||this.innerHTML==labelHide)
this.innerHTML=show?labelHide:labelShow;
this.title=(show?'🇫🇷 Masquer le menu gauche • 🇬🇧 Hide the left menu':'🇫🇷 Afficher le menu gauche • 🇬🇧 Show the left menu')+' •';
var sm=document.getElementById('storyMenu');
if (sm) config.refreshers.content(sm);
return false;
">$1</a></html>
!end
%/<<tiddler {{
var src='.ToggleLeftSidebar'; src+(tiddler&&tiddler.title==src?'##info':'##show');
}} with: {{ var co=config.options;
var labelShow=co.txtToggleLeftSideBarLabelShow||'Menu►◁'; /%0C%/
var labelHide=co.txtToggleLeftSideBarLabelHide||'Menu◄▷'; /%0C%/
'$1'!='$'+'1'?'$1':(co.chkShowLeftSidebar?labelHide:labelShow);
}} {{ var tip=(config.options.chkShowLeftSidebar?'🇫🇷 Masquer le menu gauche • 🇬🇧 Hide the left menu':'🇫🇷 Afficher le menu gauche • 🇬🇧 Show the left menu')+' •'; /%0C%/
'$2'!='$'+'2'?'$2':tip;
}}>>
/* |License|https://tiddlytools.com/Classic/#LegalStatements|
|Author|[[Eric Shulman|https://tiddlytools.com/Classic/]]|
|Version|1.2.0 (2011.03.07)|
*/
//{{{
version.extensions.WikifyPlugin= {major: 1, minor: 1, revision: 4, date: new Date(2009,3,29)};
config.macros.wikify={
handler: function(place,macroName,params,wikifier,paramString,tiddler) {
var fmt=params.shift();
var values=[];
var out="";
if (!fmt.match(/\%[0-9]/g) && params.length) // format has no markers, just join all params with spaces
out=fmt+" "+params.join(" ");
else { // format param has markers, get values and perform substitution
while (p=params.shift()) values.push(this.getFieldReference(place,p));
out=fmt.format(values);
}
if (macroName=="wikiCalc") out=eval(out).toString();
wikify(out.unescapeLineBreaks(),place,null,tiddler);
},
getFieldReference: function(place,p) { // "slicename::tiddlername" or "fieldname@tiddlername" or "fieldname"
if (typeof p != "string") return p; // literal non-string value .. just return it ..
var parts=p.split(config.textPrimitives.sliceSeparator);
if (parts.length==2) {// maybe a slice reference?
var tid=parts[0]; var slice=parts[1];
if (!tid || !tid.length || tid=="here") { // no target (or "here"), use containing tiddler
tid=story.findContainingTiddler(place);
if (tid) tid=tid.getAttribute("tiddler")
else tid="SiteSlices"; // fallback for 'non-tiddler' areas (e.g, header, sidebar, etc.)
}
var val=store.getTiddlerSlice(tid,slice); // get tiddler slice value
}
if (val==undefined) {// not a slice, or slice not found, maybe a field reference?
var parts=p.split("@");
var field=parts[0];
if (!field || !field.length) field="checked"; // missing fieldname, fallback: checked@tiddlername
var tid=parts[1];
if (!tid || !tid.length || tid=="here") { // no target (or "here"), use containing tiddler
tid=story.findContainingTiddler(place);
if (tid) tid=tid.getAttribute("tiddler")
else tid="SiteFields"; // fallback for 'non-tiddler' areas (e.g, header, sidebar, etc.)
}
var val=store.getValue(tid,field);
}
// not a slice or field, or slice/field not found .. return value unchanged
return val===undefined?p:val;
}
}
//}}}
//{{{
// define alternative macroName for triggering pre-rendering call to eval()
config.macros.wikiCalc=config.macros.wikify;
//}}}
/***
|Name|YourSearchPlugin|
|Author|[[Udo Borkowski|https://tiddlywiki.abego-software.de/]]|
|Version|2.2.0 (2023-05-06)|
|Summary|Search your TiddlyWiki with advanced search features such as result lists, tiddler preview, result ranking, search filters, combined searches and many more.|
|Source|http://tiddlywiki.abego-software.de/#YourSearchPlugin|
|Twitter|[[@abego|https://twitter.com/#!/abego]]|
|GitHub|https://github.com/abego/YourSearchPlugin|
|Author|UdoBorkowski ^^(ub [at] abego-software [dot] de)^^|
|License|[[BSD open source license|http://www.abego-software.de/legal/apl-v10.html]]|
!About YourSearch
YourSearch gives you a bunch of new features to simplify and speed up your daily searches in TiddlyWiki. It seamlessly integrates into the standard TiddlyWiki search: just start typing into the 'search' field and explore!
For more information see [[Help|YourSearch Help]].
!Compatibility
This plugin requires TiddlyWiki 2.1.
Check the [[archive|http://tiddlywiki.abego-software.de/archive]] for ~YourSearchPlugins supporting older versions of TiddlyWiki.
!Source Code
***/
/***
This plugin's source code is compressed (and hidden).
Use this [[link|http://tiddlywiki.abego-software.de/archive/YourSearchPlugin/2.2.0/YourSearchPlugin-2.2.0-src.js]] to get the readable source code.
***/
///%
if(!version.extensions.YourSearchPlugin){version.extensions.YourSearchPlugin={major:2,minor:2,revision:0,source:"http://tiddlywiki.abego-software.de/#YourSearchPlugin",licence:"[[BSD open source license (abego Software)|http://www.abego-software.de/legal/apl-v10.html]]",copyright:"Copyright (c) abego Software GmbH, 2005-2023 (www.abego-software.de)"};if(!window.abego){window.abego={}}if(!Array.forEach&&!Array.prototype.forEach){Array.forEach=function(c,e,d){for(var b=0,a=c.length;b<a;b++){e.call(d,c[b],b,c)}};Array.prototype.forEach=function(d,c){for(var b=0,a=this.length;b<a;b++){d.call(c,this[b],b,this)}}}abego.toInt=function(b,a){if(!b){return a}var c=parseInt(b);return(c==NaN)?a:c};abego.createEllipsis=function(a){var b=createTiddlyElement(a,"span");b.innerHTML="…"};abego.shallowCopy=function(b){if(!b){return b}var a={};for(var c in b){a[c]=b[c]}return a};abego.copyOptions=function(a){return !a?{}:abego.shallowCopy(a)};abego.countStrings=function(c,b){var e=0;if(!b){return e}var d=0;while(true){var a=c.indexOf(b,d);if(a<0){return e}e++;d=a+b.length}};abego.getBracedText=function(j,e,a){if(!e){e=0}var k=/\{([^\}]*)\}/gm;k.lastIndex=e;var d=k.exec(j);if(d){var l=d[1];var b=abego.countStrings(l,"{");if(!b){if(a){a.lastIndex=k.lastIndex}return l}var g=j.length;for(var f=k.lastIndex;f<g&&b;f++){var h=j.charAt(f);if(h=="{"){b++}else{if(h=="}"){b--}}}if(!b){if(a){a.lastIndex=f-1}return j.substring(d.index+1,f-1)}}};abego.select=function(d,c,b,a){if(!a){a=[]}d.forEach(function(e){if(c.call(b,e)){a.push(e)}});return a};abego.consumeEvent=function(a){if(a.stopPropagation){a.stopPropagation()}if(a.preventDefault){a.preventDefault()}a.cancelBubble=true;a.returnValue=true};abego.TiddlerFilterTerm=function(d,b){if(!b){b={}}var c=d;if(!b.textIsRegExp){c=d.escapeRegExp();if(b.fullWordMatch){c="\\b"+c+"\\b"}}var a=new RegExp(c,"m"+(b.caseSensitive?"":"i"));this.tester=new abego.MultiFieldRegExpTester(a,b.fields,b.withExtendedFields)};abego.TiddlerFilterTerm.prototype.test=function(a){return this.tester.test(a)};abego.parseNewTiddlerCommandLine=function(c){var a=/(.*?)\.(?:\s+|$)([^#]*)(#.*)?/.exec(c);if(!a){a=/([^#]*)()(#.*)?/.exec(c)}if(a){var d;if(a[3]){var b=a[3].replace(/#/g,"");d=b.parseParams("tag")}else{d=[[]]}var e=a[2]?a[2].trim():"";d.push({name:"text",value:e});d[0].text=[e];return{title:a[1].trim(),params:d}}else{return{title:c.trim(),params:[[]]}}};abego.parseTiddlerFilterTerm=function(queryText,offset,options){var re=/\s*(?:(?:\{([^\}]*)\})|(?:(=)|([#%!])|(?:(\w+)\s*\:(?!\/\/))|(?:(?:("(?:(?:\\")|[^"])+")|(?:\/((?:(?:\\\/)|[^\/])+)\/)|(\w+\:\/\/[^\s]+)|([^\s\)\-\"]+)))))/mg;var shortCuts={"!":"title","%":"text","#":"tags"};var fieldNames={};var fullWordMatch=false;re.lastIndex=offset;while(true){var i=re.lastIndex;var m=re.exec(queryText);if(!m||m.index!=i){throw"Word or String literal expected"}if(m[1]){var lastIndexRef={};var code=abego.getBracedText(queryText,0,lastIndexRef);if(!code){throw"Invalid {...} syntax"}var f=Function("tiddler","return ("+code+");");return{func:f,lastIndex:lastIndexRef.lastIndex,markRE:null}}if(m[2]){fullWordMatch=true}else{if(m[3]){fieldNames[shortCuts[m[3]]]=1}else{if(m[4]){fieldNames[m[4]]=1}else{var textIsRegExp=m[6];var text=m[5]?window.eval(m[5]):m[6]?m[6]:m[7]?m[7]:m[8];options=abego.copyOptions(options);options.fullWordMatch=fullWordMatch;options.textIsRegExp=textIsRegExp;var fields=[];for(var n in fieldNames){fields.push(n)}if(fields.length==0){options.fields=options.defaultFields}else{options.fields=fields;options.withExtendedFields=false}var term=new abego.TiddlerFilterTerm(text,options);var markREText=textIsRegExp?text:text.escapeRegExp();if(markREText&&fullWordMatch){markREText="\\b"+markREText+"\\b"}return{func:function(tiddler){return term.test(tiddler)},lastIndex:re.lastIndex,markRE:markREText?"(?:"+markREText+")":null}}}}}};abego.BoolExp=function(i,c,j){this.s=i;var h=j&&j.defaultOperationIs_OR;var e=/\s*\)/g;var f=/\s*(?:(and|\&\&)|(or|\|\|))/gi;var b=/\s*(\-|not)?(\s*\()?/gi;var a;var d=function(p){b.lastIndex=p;var l=b.exec(i);var o=false;var k=null;if(l&&l.index==p){p+=l[0].length;o=l[1];if(l[2]){var n=a(p);e.lastIndex=n.lastIndex;if(!e.exec(i)){throw"Missing ')'"}k={func:n.func,lastIndex:e.lastIndex,markRE:n.markRE}}}if(!k){k=c(i,p,j)}if(o){k.func=(function(m){return function(q){return !m(q)}})(k.func);k.markRE=null}return k};a=function(s){var n=d(s);while(true){var p=n.lastIndex;f.lastIndex=p;var k=f.exec(i);var o;var q;if(k&&k.index==p){o=!k[1];q=d(f.lastIndex)}else{try{q=d(p)}catch(r){return n}o=h}n.func=(function(t,m,l){return l?function(u){return t(u)||m(u)}:function(u){return t(u)&&m(u)}})(n.func,q.func,o);n.lastIndex=q.lastIndex;if(!n.markRE){n.markRE=q.markRE}else{if(q.markRE){n.markRE=n.markRE+"|"+q.markRE}}}};var g=a(0);this.evalFunc=g.func;if(g.markRE){this.markRegExp=new RegExp(g.markRE,j.caseSensitive?"mg":"img")}};abego.BoolExp.prototype.exec=function(){return this.evalFunc.apply(this,arguments)};abego.BoolExp.prototype.getMarkRegExp=function(){return this.markRegExp};abego.BoolExp.prototype.toString=function(){return this.s};abego.MultiFieldRegExpTester=function(b,a,c){this.re=b;this.fields=a?a:["title","text","tags"];this.withExtendedFields=c};abego.MultiFieldRegExpTester.prototype.test=function(b){var d=this.re;for(var a=0;a<this.fields.length;a++){var c=store.getValue(b,this.fields[a]);if(typeof c=="string"&&d.test(c)){return this.fields[a]}}if(this.withExtendedFields){return store.forEachField(b,function(e,g,f){return typeof f=="string"&&d.test(f)?g:null},true)}return null};abego.TiddlerQuery=function(b,a,d,c,e){if(d){this.regExp=new RegExp(b,a?"mg":"img");this.tester=new abego.MultiFieldRegExpTester(this.regExp,c,e)}else{this.expr=new abego.BoolExp(b,abego.parseTiddlerFilterTerm,{defaultFields:c,caseSensitive:a,withExtendedFields:e})}this.getQueryText=function(){return b};this.getUseRegExp=function(){return d};this.getCaseSensitive=function(){return a};this.getDefaultFields=function(){return c};this.getWithExtendedFields=function(){return e}};abego.TiddlerQuery.prototype.test=function(a){if(!a){return false}if(this.regExp){return this.tester.test(a)}return this.expr.exec(a)};abego.TiddlerQuery.prototype.filter=function(a){return abego.select(a,this.test,this)};abego.TiddlerQuery.prototype.getMarkRegExp=function(){if(this.regExp){return"".search(this.regExp)>=0?null:this.regExp}return this.expr.getMarkRegExp()};abego.TiddlerQuery.prototype.toString=function(){return(this.regExp?this.regExp:this.expr).toString()};abego.PageWiseRenderer=function(){this.firstIndexOnPage=0};merge(abego.PageWiseRenderer.prototype,{setItems:function(a){this.items=a;this.setFirstIndexOnPage(0)},getMaxPagesInNavigation:function(){return 10},getItemsCount:function(a){return this.items?this.items.length:0},getCurrentPageIndex:function(){return Math.floor(this.firstIndexOnPage/this.getItemsPerPage())},getLastPageIndex:function(){return Math.floor((this.getItemsCount()-1)/this.getItemsPerPage())},setFirstIndexOnPage:function(a){this.firstIndexOnPage=Math.min(Math.max(0,a),this.getItemsCount()-1)},getFirstIndexOnPage:function(){this.firstIndexOnPage=Math.floor(this.firstIndexOnPage/this.getItemsPerPage())*this.getItemsPerPage();return this.firstIndexOnPage},getLastIndexOnPage:function(){return Math.min(this.getFirstIndexOnPage()+this.getItemsPerPage()-1,this.getItemsCount()-1)},onPageChanged:function(a,b){},renderPage:function(a){if(a.beginRendering){a.beginRendering(this)}try{if(this.getItemsCount()){var d=this.getLastIndexOnPage();var c=-1;for(var b=this.getFirstIndexOnPage();b<=d;b++){c++;a.render(this,this.items[b],b,c)}}}finally{if(a.endRendering){a.endRendering(this)}}},addPageNavigation:function(c){if(!this.getItemsCount()){return}var k=this;var g=function(n){if(!n){n=window.event}abego.consumeEvent(n);var i=abego.toInt(this.getAttribute("page"),0);var m=k.getCurrentPageIndex();if(i==m){return}var l=i*k.getItemsPerPage();k.setFirstIndexOnPage(l);k.onPageChanged(i,m)};var e;var h=this.getCurrentPageIndex();var f=this.getLastPageIndex();if(h>0){e=createTiddlyButton(c,"Précédente","Aller en page précédente (Raccourci: Alt-'<')",g,"précédente");e.setAttribute("page",(h-1).toString());e.setAttribute("accessKey","<")}for(var d=-this.getMaxPagesInNavigation();d<this.getMaxPagesInNavigation();d++){var b=h+d;if(b<0){continue}if(b>f){break}var a=(d+h+1).toString();var j=b==h?"currentPage":"otherPage";e=createTiddlyButton(c,a,"Aller page %0".format([a]),g,j);e.setAttribute("page",(b).toString())}if(h<f){e=createTiddlyButton(c,"Suivante","Aller à la page suivante (Raccourci: Alt-'>')",g,"suivante");e.setAttribute("page",(h+1).toString());e.setAttribute("accessKey",">")}}});abego.LimitedTextRenderer=function(){var l=40;var c=4;var k=function(p,z,v){var q=p.length;if(q==0){p.push({start:z,end:v});return}var u=0;for(;u<q;u++){var w=p[u];if(w.start<=v&&z<=w.end){var o;var s=u+1;for(;s<q;s++){o=p[s];if(o.start>v||z>w.end){break}}var x=z;var y=v;for(var t=u;t<s;t++){o=p[t];x=Math.min(x,o.start);y=Math.max(y,o.end)}p.splice(u,s-u,{start:x,end:y});return}if(w.start>v){break}}p.splice(u,0,{start:z,end:v})};var d=function(n){var q=0;for(var p=0;p<n.length;p++){var o=n[p];q+=o.end-o.start}return q};var b=function(n){return(n>="a"&&n<="z")||(n>="A"&&n<="Z")||n=="_"};var f=function(p,r){if(!b(p[r])){return null}for(var o=r-1;o>=0&&b(p[o]);o--){}var q=o+1;var t=p.length;for(o=r+1;o<t&&b(p[o]);o++){}return{start:q,end:o}};var a=function(o,q,p){var n;if(p){n=f(o,q)}else{if(q<=0){return q}n=f(o,q-1)}if(!n){return q}if(p){if(n.start>=q-c){return n.start}if(n.end<=q+c){return n.end}}else{if(n.end<=q+c){return n.end}if(n.start>=q-c){return n.start}}return q};var j=function(r,q){var n=[];if(q){var u=0;do{q.lastIndex=u;var o=q.exec(r);if(o){if(u<o.index){var p=r.substring(u,o.index);n.push({text:p})}n.push({text:o[0],isMatch:true});u=o.index+o[0].length}else{n.push({text:r.substr(u)});break}}while(true)}else{n.push({text:r})}return n};var i=function(p){var n=0;for(var o=0;o<p.length;o++){if(p[o].isMatch){n++}}return n};var h=function(v,u,q,t,o){var w=Math.max(Math.floor(o/(t+1)),l);var n=Math.max(w-(q-u),0);var r=Math.min(Math.floor(q+n/3),v.length);var p=Math.max(r-w,0);p=a(v,p,true);r=a(v,r,false);return{start:p,end:r}};var m=function(r,y,o){var n=[];var v=i(r);var u=0;for(var p=0;p<r.length;p++){var x=r[p];var w=x.text;if(x.isMatch){var q=h(y,u,u+w.length,v,o);k(n,q.start,q.end)}u+=w.length}return n};var g=function(t,p,o){var n=o-d(p);while(n>0){if(p.length==0){k(p,0,a(t,o,false));return}else{var q=p[0];var v;var r;if(q.start==0){v=q.end;if(p.length>1){r=p[1].start}else{k(p,v,a(t,v+n,false));return}}else{v=0;r=q.start}var u=Math.min(r,v+n);k(p,v,u);n-=(u-v)}}};var e=function(p,x,w,n,o){if(n.length==0){return}var u=function(z,I,D,F,C){var H;var G;var E=0;var B=0;var A=0;for(;B<D.length;B++){H=D[B];G=H.text;if(F<E+G.length){A=F-E;break}E+=G.length}var y=C-F;for(;B<D.length&&y>0;B++){H=D[B];G=H.text.substr(A);A=0;if(G.length>y){G=G.substr(0,y)}if(H.isMatch){createTiddlyElement(z,"span",null,"marked",G)}else{createTiddlyText(z,G)}y-=G.length}if(C<I.length){abego.createEllipsis(z)}};if(n[0].start>0){abego.createEllipsis(p)}var q=o;for(var r=0;r<n.length&&q>0;r++){var t=n[r];var v=Math.min(t.end-t.start,q);u(p,x,w,t.start,t.start+v);q-=v}};this.render=function(p,q,o,t){if(q.length<o){o=q.length}var r=j(q,t);var n=m(r,q,o);g(q,n,o);e(p,q,r,n,o)}};(function(){function alertAndThrow(msg){alert(msg);throw msg}if(version.major<2||(version.major==2&&version.minor<1)){alertAndThrow("YourSearchPlugin requires TiddlyWiki 2.1 or newer.\n\nCheck the archive for YourSearch plugins\nsupporting older versions of TiddlyWiki.\n\nArchive: http://tiddlywiki.abego-software.de/archive")}abego.YourSearch={};var lastResults=undefined;var lastQuery=undefined;var setLastResults=function(array){lastResults=array};var getLastResults=function(){return lastResults?lastResults:[]};var getLastResultsCount=function(){return lastResults?lastResults.length:0};var matchInTitleWeight=4;var precisionInTitleWeight=10;var matchInTagsWeight=2;var getMatchCount=function(s,re){var m=s.match(re);return m?m.length:0};var standardRankFunction=function(tiddler,query){var markRE=query.getMarkRegExp();if(!markRE){return 1}var matchesInTitle=tiddler.title.match(markRE);var nMatchesInTitle=matchesInTitle?matchesInTitle.length:0;var nMatchesInTags=getMatchCount(tiddler.getTags(),markRE);var lengthOfMatchesInTitle=matchesInTitle?matchesInTitle.join("").length:0;var precisionInTitle=tiddler.title.length>0?lengthOfMatchesInTitle/tiddler.title.length:0;var rank=nMatchesInTitle*matchInTitleWeight+nMatchesInTags*matchInTagsWeight+precisionInTitle*precisionInTitleWeight+1;return rank};var findMatches=function(store,searchText,caseSensitive,useRegExp,sortField,excludeTag){lastQuery=null;var candidates=store.reverseLookup("tags",excludeTag,false);try{var defaultFields=[];if(config.options.chkSearchInTitle){defaultFields.push("title")}if(config.options.chkSearchInText){defaultFields.push("text")}if(config.options.chkSearchInTags){defaultFields.push("tags")}lastQuery=new abego.TiddlerQuery(searchText,caseSensitive,useRegExp,defaultFields,config.options.chkSearchExtendedFields)}catch(e){return[]}var results=lastQuery.filter(candidates);var rankFunction=abego.YourSearch.getRankFunction();for(var i=0;i<results.length;i++){var tiddler=results[i];var rank=rankFunction(tiddler,lastQuery);tiddler.searchRank=rank}if(!sortField){sortField="title"}var sortFunction=function(a,b){var searchRankDiff=a.searchRank-b.searchRank;if(searchRankDiff==0){if(a[sortField]==b[sortField]){return(0)}else{return(a[sortField]<b[sortField])?-1:+1}}else{return(searchRankDiff>0)?-1:+1}};results.sort(sortFunction);return results};var maxCharsInTitle=80;var maxCharsInTags=50;var maxCharsInText=250;var maxCharsInField=50;var itemsPerPageDefault=25;var itemsPerPageWithPreviewDefault=10;var yourSearchResultID="yourSearchResult";var yourSearchResultItemsID="yourSearchResultItems";var lastSearchText=null;var resultElement=null;var searchInputField=null;var searchButton=null;var lastNewTiddlerButton=null;var initStylesheet=function(){if(version.extensions.YourSearchPlugin.styleSheetInited){return}version.extensions.YourSearchPlugin.styleSheetInited=true;setStylesheet(store.getTiddlerText("YourSearchStyleSheet"),"yourSearch")};var isResultOpen=function(){return resultElement!=null&&resultElement.parentNode==document.body};var closeResult=function(){if(isResultOpen()){document.body.removeChild(resultElement)}};var closeResultAndDisplayTiddler=function(e){closeResult();var title=this.getAttribute("tiddlyLink");if(title){var withHilite=this.getAttribute("withHilite");var oldHighlightHack=highlightHack;if(withHilite&&withHilite=="true"&&lastQuery){highlightHack=lastQuery.getMarkRegExp()}story.displayTiddler(this,title);highlightHack=oldHighlightHack}return(false)};var adjustResultPositionAndSize=function(){if(!searchInputField){return}var root=searchInputField;var rootLeft=findPosX(root);var rootTop=findPosY(root);var rootHeight=root.offsetHeight;var popupLeft=rootLeft;var popupTop=rootTop+rootHeight;var winWidth=findWindowWidth();if(winWidth<resultElement.offsetWidth){resultElement.style.width=(winWidth-100)+"px";winWidth=findWindowWidth()}var popupWidth=resultElement.offsetWidth;if(popupLeft+popupWidth>winWidth){popupLeft=winWidth-popupWidth-30}if(popupLeft<0){popupLeft=0}resultElement.style.left=popupLeft+"px";resultElement.style.top=popupTop+"px";resultElement.style.display="block"};var scrollVisible=function(){if(resultElement){window.scrollTo(0,ensureVisible(resultElement))}if(searchInputField){window.scrollTo(0,ensureVisible(searchInputField))}};var ensureResultIsDisplayedNicely=function(){adjustResultPositionAndSize();scrollVisible()};var indexInPage=undefined;var currentTiddler=undefined;var pager=new abego.PageWiseRenderer();var MyItemRenderer=function(parent){this.itemHtml=store.getTiddlerText("YourSearchItemTemplate");if(!this.itemHtml){alertAndThrow("YourSearchItemTemplate not found")}this.place=document.getElementById(yourSearchResultItemsID);if(!this.place){this.place=createTiddlyElement(parent,"div",yourSearchResultItemsID)}};merge(MyItemRenderer.prototype,{render:function(pager,object,index,indexOnPage){indexInPage=indexOnPage;currentTiddler=object;var item=createTiddlyElement(this.place,"div",null,"yourSearchItem");item.innerHTML=this.itemHtml;applyHtmlMacros(item,null);refreshElements(item,null)},endRendering:function(pager){currentTiddler=null}});var refreshResult=function(){if(!resultElement||!searchInputField){return}var html=store.getTiddlerText("YourSearchResultTemplate");if(!html){html="<b>Tiddler YourSearchResultTemplate not found</b>"}resultElement.innerHTML=html;applyHtmlMacros(resultElement,null);refreshElements(resultElement,null);var itemRenderer=new MyItemRenderer(resultElement);pager.renderPage(itemRenderer);ensureResultIsDisplayedNicely()};pager.getItemsPerPage=function(){var n=(config.options.chkPreviewText)?abego.toInt(config.options.txtItemsPerPageWithPreview,itemsPerPageWithPreviewDefault):abego.toInt(config.options.txtItemsPerPage,itemsPerPageDefault);return(n>0)?n:1};pager.onPageChanged=function(){refreshResult()};var reopenResultIfApplicable=function(){if(searchInputField==null||!config.options.chkUseYourSearch){return}if((searchInputField.value==lastSearchText)&&lastSearchText&&!isResultOpen()){if(resultElement&&(resultElement.parentNode!=document.body)){document.body.appendChild(resultElement);ensureResultIsDisplayedNicely()}else{abego.YourSearch.onShowResult(true)}}};var invalidateResult=function(){closeResult();resultElement=null;lastSearchText=null};var isDescendantOrSelf=function(self,e){while(e!=null){if(self==e){return true}e=e.parentNode}return false};var onDocumentClick=function(e){if(e.target==searchInputField){return}if(e.target==searchButton){return}if(resultElement&&isDescendantOrSelf(resultElement,e.target)){return}closeResult()};var onDocumentKeyup=function(e){if(e.keyCode==27){closeResult()}};addEvent(document,"click",onDocumentClick);addEvent(document,"keyup",onDocumentKeyup);var myStorySearch=function(text,useCaseSensitive,useRegExp){lastSearchText=text;setLastResults(findMatches(store,text,useCaseSensitive,useRegExp,"title","excludeSearch"));abego.YourSearch.onShowResult()};var myMacroSearchHandler=function(place,macroName,params,wikifier,paramString,tiddler){initStylesheet();lastSearchText="";var searchTimeout=null;var doSearch=function(txt){if(config.options.chkUseYourSearch){myStorySearch(txt.value,config.options.chkCaseSensitiveSearch,config.options.chkRegExpSearch)}else{story.search(txt.value,config.options.chkCaseSensitiveSearch,config.options.chkRegExpSearch)}lastSearchText=txt.value};var clickHandler=function(e){doSearch(searchInputField);return false};var keyHandler=function(e){if(!e){e=window.event}searchInputField=this;switch(e.keyCode){case 13:if(e.ctrlKey&&lastNewTiddlerButton&&isResultOpen()){lastNewTiddlerButton.onclick.apply(lastNewTiddlerButton,[e])}else{doSearch(this)}break;case 27:if(isResultOpen()){closeResult()}else{this.value="";clearMessage()}break}if(String.fromCharCode(e.keyCode)==this.accessKey||e.altKey){reopenResultIfApplicable()}if(this.value.length<3&&searchTimeout){clearTimeout(searchTimeout)}if(this.value.length>2){if(this.value!=lastSearchText){if(!config.options.chkUseYourSearch||config.options.chkSearchAsYouType){if(searchTimeout){clearTimeout(searchTimeout)}var txt=this;searchTimeout=setTimeout(function(){doSearch(txt)},500)}}else{if(searchTimeout){clearTimeout(searchTimeout)}}}if(this.value.length==0){closeResult()}};var focusHandler=function(e){this.select();clearMessage();reopenResultIfApplicable()};var args=paramString.parseParams("list",null,true);var buttonAtRight=getFlag(args,"buttonAtRight");var sizeTextbox=getParam(args,"sizeTextbox",this.sizeTextbox);var txt=createTiddlyElement(null,"input",null,"txtOptionInput searchField",null);if(params[0]){txt.value=params[0]}txt.onkeyup=keyHandler;txt.onfocus=focusHandler;txt.setAttribute("size",sizeTextbox);txt.setAttribute("accessKey",this.accessKey);txt.setAttribute("autocomplete","off");if(config.browser.isSafari){txt.setAttribute("type","search");txt.setAttribute("results","5")}else{if(!config.browser.isIE){txt.setAttribute("type","text")}}var btn=createTiddlyButton(null,this.label,this.prompt,clickHandler);if(place){if(!buttonAtRight){place.appendChild(btn)}place.appendChild(txt);if(buttonAtRight){place.appendChild(btn)}}searchInputField=txt;searchButton=btn};var openAllFoundTiddlers=function(){closeResult();var results=getLastResults();var n=results.length;if(n){var titles=[];for(var i=0;i<n;i++){titles.push(results[i].title)}story.displayTiddlers(null,titles)}};var createOptionWithRefresh=function(place,optionParams,wikifier,tiddler){invokeMacro(place,"option",optionParams,wikifier,tiddler);var elem=place.lastChild;var oldOnClick=elem.onclick;elem.onclick=function(e){var result=oldOnClick.apply(this,arguments);refreshResult();return result};return elem};var removeTextDecoration=function(s){var removeThis=["''","{{{","}}}","//","<<<","/***","***/"];var reText="";for(var i=0;i<removeThis.length;i++){if(i!=0){reText+="|"}reText+="("+removeThis[i].escapeRegExp()+")"}return s.replace(new RegExp(reText,"mg"),"").trim()};var getShortCutNumber=function(){var i=indexInPage;return(i>=0&&i<=9)?(i<9?(i+1):0):-1};var limitedTextRenderer=new abego.LimitedTextRenderer();var renderLimitedText=function(place,s,maxLen){limitedTextRenderer.render(place,s,maxLen,lastQuery.getMarkRegExp())};var oldTiddlyWikiSaveTiddler=TiddlyWiki.prototype.saveTiddler;TiddlyWiki.prototype.saveTiddler=function(title,newTitle,newBody,modifier,modified,tags,fields){oldTiddlyWikiSaveTiddler.apply(this,arguments);invalidateResult()};var oldTiddlyWikiRemoveTiddler=TiddlyWiki.prototype.removeTiddler;TiddlyWiki.prototype.removeTiddler=function(title){oldTiddlyWikiRemoveTiddler.apply(this,arguments);invalidateResult()};config.macros.yourSearch={label:"yourSearch",prompt:"Gives access to the current/last YourSearch result",handler:function(place,macroName,params,wikifier,paramString,tiddler){if(params.length==0){return}var name=params[0];var func=config.macros.yourSearch.funcs[name];if(func){func(place,macroName,params,wikifier,paramString,tiddler)}},tests:{"true":function(){return true},"false":function(){return false},found:function(){return getLastResultsCount()>0},previewText:function(){return config.options.chkPreviewText}},funcs:{itemRange:function(place){if(getLastResultsCount()){var lastIndex=pager.getLastIndexOnPage();var s="%0 - %1".format([pager.getFirstIndexOnPage()+1,lastIndex+1]);createTiddlyText(place,s)}},count:function(place){createTiddlyText(place,getLastResultsCount().toString())},query:function(place){if(lastQuery){createTiddlyText(place,lastQuery.toString())}},version:function(place){var t="YourSearch %0.%1.%2".format([version.extensions.YourSearchPlugin.major,version.extensions.YourSearchPlugin.minor,version.extensions.YourSearchPlugin.revision]);var e=createTiddlyElement(place,"a");e.setAttribute("href","http://tiddlywiki.abego-software.de/#YourSearchPlugin");e.innerHTML='<font color="black" face="Arial, Helvetica, sans-serif">'+t+"<font>"},copyright:function(place){var e=createTiddlyElement(place,"a");e.setAttribute("href","http://www.abego-software.de");e.innerHTML='<font color="black" face="Arial, Helvetica, sans-serif">© 2005-2025 <b><font color="blue">abego</font></b> Software<font>'},newTiddlerButton:function(place){if(lastQuery){var r=abego.parseNewTiddlerCommandLine(lastQuery.getQueryText());var btn=config.macros.newTiddler.createNewTiddlerButton(place,r.title,r.params,"new tiddler","Create a new tiddler based on search text. (Raccourcis: Ctrl-Enter; Separateurs: '.', '#')",null,"text");var oldOnClick=btn.onclick;btn.onclick=function(){closeResult();oldOnClick.apply(this,arguments)};lastNewTiddlerButton=btn}},linkButton:function(place,macroName,params,wikifier,paramString,tiddler){if(params<2){return}var tiddlyLink=params[1];var text=params<3?tiddlyLink:params[2];var tooltip=params<4?text:params[3];var accessKey=params<5?null:params[4];var btn=createTiddlyButton(place,text,tooltip,closeResultAndDisplayTiddler,null,null,accessKey);btn.setAttribute("tiddlyLink",tiddlyLink)},closeButton:function(place,macroName,params,wikifier,paramString,tiddler){createTiddlyButton(place,"Fermer","Close the Search Results (Shortcut: ESC)",closeResult)},openAllButton:function(place,macroName,params,wikifier,paramString,tiddler){var n=getLastResultsCount();if(n==0){return}var title=n==1?"open tiddler":"Ouvrir les %0 articles".format([n]);var button=createTiddlyButton(place,title,"Open all found tiddlers (Shortcut: Alt-O)",openAllFoundTiddlers);button.setAttribute("accessKey","O")},naviBar:function(place,macroName,params,wikifier,paramString,tiddler){pager.addPageNavigation(place)},"if":function(place,macroName,params,wikifier,paramString,tiddler){if(params.length<2){return}var testName=params[1];var negate=(testName=="not");if(negate){if(params.length<3){return}testName=params[2]}var test=config.macros.yourSearch.tests[testName];var showIt=false;try{if(test){showIt=test(place,macroName,params,wikifier,paramString,tiddler)!=negate}else{showIt=(!eval(testName))==negate}}catch(ex){}if(!showIt){place.style.display="none"}},chkPreviewText:function(place,macroName,params,wikifier,paramString,tiddler){var elem=createOptionWithRefresh(place,"chkPreviewText",wikifier,tiddler);elem.setAttribute("accessKey","P");elem.title="Show text preview of found tiddlers (Shortcut: Alt-P)";return elem}}};config.macros.foundTiddler={label:"foundTiddler",prompt:"Provides information on the tiddler currently processed on the YourSearch result page",handler:function(place,macroName,params,wikifier,paramString,tiddler){var name=params[0];var func=config.macros.foundTiddler.funcs[name];if(func){func(place,macroName,params,wikifier,paramString,tiddler)}},funcs:{title:function(place,macroName,params,wikifier,paramString,tiddler){if(!currentTiddler){return}var shortcutNumber=getShortCutNumber();var tooltip=shortcutNumber>=0?"Open tiddler (Shortcut: Alt-%0)".format([shortcutNumber.toString()]):"Open tiddler";var btn=createTiddlyButton(place,null,tooltip,closeResultAndDisplayTiddler,null);btn.setAttribute("tiddlyLink",currentTiddler.title);btn.setAttribute("withHilite","true");renderLimitedText(btn,currentTiddler.title,maxCharsInTitle);if(shortcutNumber>=0){btn.setAttribute("accessKey",shortcutNumber.toString())}},tags:function(place,macroName,params,wikifier,paramString,tiddler){if(!currentTiddler){return}renderLimitedText(place,currentTiddler.getTags(),maxCharsInTags)},text:function(place,macroName,params,wikifier,paramString,tiddler){if(!currentTiddler){return}renderLimitedText(place,removeTextDecoration(currentTiddler.text),maxCharsInText)},field:function(place,macroName,params,wikifier,paramString,tiddler){if(!currentTiddler){return}var name=params[1];var len=params.length>2?abego.toInt(params[2],maxCharsInField):maxCharsInField;var v=store.getValue(currentTiddler,name);if(v){renderLimitedText(place,removeTextDecoration(v),len)}},number:function(place,macroName,params,wikifier,paramString,tiddler){var numberToDisplay=getShortCutNumber();if(numberToDisplay>=0){var text="%0)".format([numberToDisplay.toString()]);createTiddlyElement(place,"span",null,"shortcutNumber",text)}}}};var opts={chkUseYourSearch:true,chkPreviewText:true,chkSearchAsYouType:true,chkSearchInTitle:true,chkSearchInText:true,chkSearchInTags:true,chkSearchExtendedFields:true,txtItemsPerPage:itemsPerPageDefault,txtItemsPerPageWithPreview:itemsPerPageWithPreviewDefault};for(var n in opts){if(config.options[n]==undefined){config.options[n]=opts[n]}}config.shadowTiddlers.AdvancedOptions+="\n<<option chkUseYourSearch>> Use 'Your Search' //([[more options|YourSearch Options]]) ([[help|YourSearch Help]])// ";config.shadowTiddlers["YourSearch Help"]="!Field Search\nWith the Field Search you can restrict your search to certain fields of a tiddler, e.g only search the tags or only the titles. The general form is //fieldname//'':''//textToSearch// (e.g. {{{title:intro}}}). In addition one-character shortcuts are also supported for the standard fields {{{title}}}, {{{text}}} and {{{tags}}}:\n|!What you want|!What you type|!Example|\n|Search ''titles only''|start word with ''!''|{{{!jonny}}} (shortcut for {{{title:jonny}}})|\n|Search ''contents/text only''|start word with ''%''|{{{%football}}} (shortcut for {{{text:football}}})|\n|Search ''tags only''|start word with ''#''|{{{#Plugin}}} (shortcut for {{{tags:Plugin}}})|\n\nUsing this feature you may also search the extended fields (\"Metadata\") introduced with TiddlyWiki 2.1, e.g. use {{{priority:1}}} to find all tiddlers with the priority field set to \"1\".\n\nYou may search a word in more than one field. E.g. {{{!#Plugin}}} (or {{{title:tags:Plugin}}} in the \"long form\") finds tiddlers containing \"Plugin\" either in the title or in the tags (but does not look for \"Plugin\" in the text). \n\n!Boolean Search\nThe Boolean Search is useful when searching for multiple words.\n|!What you want|!What you type|!Example|\n|''All words'' must exist|List of words|{{{jonny jeremy}}} (or {{{jonny and jeremy}}})|\n|''At least one word'' must exist|Separate words by ''or''|{{{jonny or jeremy}}}|\n|A word ''must not exist''|Start word with ''-''|{{{-jonny}}} (or {{{not jonny}}})|\n\n''Note:'' When you specify two words, separated with a space, YourSearch finds all tiddlers that contain both words, but not necessarily next to each other. If you want to find a sequence of word, e.g. '{{{John Brown}}}', you need to put the words into quotes. I.e. you type: {{{\"john brown\"}}}.\n\nUsing parenthesis you may change the default \"left to right\" evaluation of the boolean search. E.g. {{{not (jonny or jeremy)}}} finds all tiddlers that contain neither \"jonny\" nor \"jeremy. In contrast to this {{{not jonny or jeremy}}} (i.e. without parenthesis) finds all tiddlers that either don't contain \"jonny\" or that contain \"jeremy\".\n\n!'Exact Word' Search\nBy default a search result all matches that 'contain' the searched text. E.g. if you search for {{{Task}}} you will get all tiddlers containing 'Task', but also '~CompletedTask', '~TaskForce' etc.\n\nIf you only want to get the tiddlers that contain 'exactly the word' you need to prefix it with a '='. E.g. typing '=Task' will find the tiddlers that contain the word 'Task', ignoring words that just contain 'Task' as a substring.\n\n!~CaseSensitiveSearch and ~RegExpSearch\nThe standard search options ~CaseSensitiveSearch and ~RegExpSearch are fully supported by YourSearch. However when ''~RegExpSearch'' is on Filtered and Boolean Search are disabled.\n\nIn addition you may do a \"regular expression\" search even with the ''~RegExpSearch'' set to false by directly entering the regular expression into the search field, framed with {{{/.../}}}. \n\nExample: {{{/m[ae][iy]er/}}} will find all tiddlers that contain either \"maier\", \"mayer\", \"meier\" or \"meyer\".\n\n!~JavaScript Expression Filtering\nIf you are familiar with JavaScript programming and know some TiddlyWiki internals you may also use JavaScript expression for the search. Just enter a JavaScript boolean expression into the search field, framed with {{{ { ... } }}}. In the code refer to the variable tiddler and evaluate to {{{true}}} when the given tiddler should be included in the result. \n\nExample: {{{ { tiddler.modified > new Date(\"Jul 4, 2005\")} }}} returns all tiddler modified after July 4th, 2005.\n\n!Combined Search\nYou are free to combine the various search options. \n\n''Examples''\n|!What you type|!Result|\n|{{{!jonny !jeremy -%football}}}|all tiddlers with both {{{jonny}}} and {{{jeremy}}} in its titles, but no {{{football}}} in content.|\n|{{{#=Task}}}|All tiddlers tagged with 'Task' (the exact word). Tags named '~CompletedTask', '~TaskForce' etc. are not considered.|\n\n!Access Keys\nYou are encouraged to use the access keys (also called \"shortcut\" keys) for the most frequently used operations. For quick reference these shortcuts are also mentioned in the tooltip for the various buttons etc.\n\n|!Key|!Operation|\n|{{{Alt-F}}}|''The most important keystroke'': It moves the cursor to the search input field so you can directly start typing your query. Pressing {{{Alt-F}}} will also display the previous search result. This way you can quickly display multiple tiddlers using \"Press {{{Alt-F}}}. Select tiddler.\" sequences.|\n|{{{ESC}}}|Closes the [[Résultat de la recherche]]. When the [[Résultat de la recherche]] is already closed and the cursor is in the search input field the field's content is cleared so you start a new query.|\n|{{{Alt-1}}}, {{{Alt-2}}},... |Pressing these keys opens the first, second etc. tiddler from the result list.|\n|{{{Alt-O}}}|Opens all found tiddlers.|\n|{{{Alt-P}}}|Toggles the 'Preview Text' mode.|\n|{{{Alt-'<'}}}, {{{Alt-'>'}}}|Displays the previous or next page in the [[Résultat de la recherche]].|\n|{{{Return}}}|When you have turned off the 'as you type' search mode pressing the {{{Return}}} key actually starts the search (as does pressing the 'search' button).|\n\n//If some of these shortcuts don't work for you check your browser if you have other extensions installed that already \"use\" these shortcuts.//";config.shadowTiddlers["YourSearch Options"]="|>|!YourSearch Options|\n|>|<<option chkUseYourSearch>> Use 'Your Search'|\n|!|<<option chkPreviewText>> Show Text Preview|\n|!|<<option chkSearchAsYouType>> 'Search As You Type' Mode (No RETURN required to start search)|\n|!|Default Search Filter:<<option chkSearchInTitle>>Title ('!') <<option chkSearchInText>>Text ('%') <<option chkSearchInTags>>Tags ('#') <<option chkSearchExtendedFields>>Extended Fields<html><br><font size=\"-2\">The fields of a tiddlers that are searched when you don't explicitly specify a filter in the search text <br>(Explictly specify fields using one or more '!', '%', '#' or 'fieldname:' prefix before the word/text to find).</font></html>|\n|!|Number of items on search result page: <<option txtItemsPerPage>>|\n|!|Number of items on search result page with preview text: <<option txtItemsPerPageWithPreview>>|\n";config.shadowTiddlers.YourSearchStyleSheet="/***\n!~YourSearchResult Stylesheet\n***/\n/*{{{*/\n.yourSearchResult {\n\tz-index: 10;\n\tposition: absolute;\n\twidth: 800px;\n\n\tpadding: 0.2em;\n\tlist-style: none;\n\tmargin: 0;\n\n\tbackground: #EEEEEE;\n\tborder: 1px solid DarkGray;\n}\n\n/*}}}*/\n/***\n!!Summary Section\n***/\n/*{{{*/\n.yourSearchResult .summary {\n\tborder-bottom-width: thin;\n\tborder-bottom-style: solid;\n\tborder-bottom-color: #999999;\n\tpadding-bottom: 4px;\n}\n\n.yourSearchRange, .yourSearchCount, .yourSearchQuery {\n\tfont-weight: bold;\n}\n\n.yourSearchResult .summary .button {\n\tfont-size: 10px;\n\n\tpadding-left: 0.3em;\n\tpadding-right: 0.3em;\n}\n\n.yourSearchResult .summary .chkBoxLabel {\n\tfont-size: 10px;\n\n\tpadding-right: 0.3em;\n}\n\n/*}}}*/\n/***\n!!Items Area\n***/\n/*{{{*/\n.yourSearchResult .marked {\n\tbackground: none;\n\tfont-weight: bold;\n}\n\n.yourSearchItem {\n\tmargin-top: 2px;\n}\n\n.yourSearchNumber {\n\tcolor: #0000FF;\n}\n\n\n.yourSearchTags {\n\tcolor: #3333ff;\n}\n\n.yourSearchText {\n\tcolor: #000080;\n\tmargin-bottom: 6px;\n}\n\n/*}}}*/\n/***\n!!Footer\n***/\n/*{{{*/\n.yourSearchFooter {\n\tmargin-top: 8px;\n\tborder-top-width: thin;\n\tborder-top-style: solid;\n\tborder-top-color: #999999;\n}\n\n.yourSearchFooter a:hover{\n\tbackground: none;\n\tcolor: none;\n}\n/*}}}*/\n/***\n!!Navigation Bar\n***/\n/*{{{*/\n.yourSearchNaviBar a {\n\tfont-size: 16px;\n\tmargin-left: 4px;\n\tmargin-right: 4px;\n\tcolor: black;\n\ttext-decoration: underline;\n}\n\n.yourSearchNaviBar a:hover {\n\tbackground-color: none;\n}\n\n.yourSearchNaviBar .prev {\n\tfont-weight: bold;\n\tcolor: blue;\n}\n\n.yourSearchNaviBar .currentPage {\n\tcolor: #0000FF;\n\tfont-weight: bold;\n\ttext-decoration: none;\n}\n\n.yourSearchNaviBar .next {\n\tfont-weight: bold;\n\tcolor: blue;\n}\n/*}}}*/\n";config.shadowTiddlers.YourSearchResultTemplate='<!--{{{-->\n<span macro="yourSearch if found">\n<!-- The Summary Header ============================================ -->\n<table class="summary" border="0" width="100%" cellspacing="0" cellpadding="0"><tbody>\n <tr>\n\t<td align="left">\n\t\tRésultat de la recherche <span class="yourSearchRange" macro="yourSearch itemRange"></span>\n\t\t sur <span class="yourSearchCount" macro="yourSearch count"></span>\n\t\tpour <span class="yourSearchQuery" macro="yourSearch query"></span>\n\t</td>\n\t<td class="yourSearchButtons" align="right">\n\t\t<span macro="yourSearch openAllButton"></span>\n\t\t<span macro="yourSearch closeButton"></span>\n\t</td>\n </tr>\n</tbody></table>\n\n<!-- The List of Found Tiddlers ============================================ -->\n<div id="'+yourSearchResultItemsID+'" itemsPerPage="25" itemsPerPageWithPreview="10"></div>\n\n<!-- The Footer (with the Navigation) ============================================ -->\n<table class="yourSearchFooter" border="0" width="100%" cellspacing="0" cellpadding="0"><tbody>\n <tr>\n\t<td align="left">\n\t\tPages de résultat : <span class="yourSearchNaviBar" macro="yourSearch naviBar"></span>\n\t</td>\n\t<td align="right"><span macro="yourSearch version"></span>, <span macro="yourSearch copyright"></span>\n\t</td>\n </tr>\n</tbody></table>\n<!-- end of the \'aucun article trouvé\' case =========================================== -->\n</span>\n\n\n<!-- The "No tiddlers found" case =========================================== -->\n<span macro="yourSearch if not found">\n<table class="summary" border="0" width="100%" cellspacing="0" cellpadding="0"><tbody>\n <tr>\n\t<td align="left">\n\t\tRésultat de la recherche: Aucun article trouvé pour la recherche <span class="yourSearchQuery" macro="yourSearch query"></span>.\n\t</td>\n\t<td class="yourSearchButtons" align="right">\n\t\t<span macro="yourSearch newTiddlerButton"></span>\n\t\t<span macro="yourSearch linkButton \'YourSearch Options\' options \'Configure YourSearch\'"></span>\n\t\t<span macro="yourSearch linkButton \'YourSearch Help\' help \'Get help how to use YourSearch\'"></span>\n\t\t<span macro="yourSearch closeButton"></span>\n\t</td>\n </tr>\n</tbody></table>\n</span>\n<!--}}}-->';config.shadowTiddlers.YourSearchItemTemplate="<!--{{{-->\n<span class='yourSearchNumber' macro='foundTiddler number'></span>\n<span class='yourSearchTitle' macro='foundTiddler title'/></span> ⟸ <span macro=\"yourSearch if previewText\"><div class='yourSearchText' macro='foundTiddler field text 250'/></div></span>\n<!--}}}-->";config.shadowTiddlers.YourSearch="<<tiddler [[YourSearch Help]]>>";config.shadowTiddlers["Résultat de la recherche"]="The popup-like window displaying the result of a YourSearch query.";config.macros.search.handler=myMacroSearchHandler;var checkForOtherHijacker=function(){if(config.macros.search.handler!=myMacroSearchHandler){alert("Message from YourSearchPlugin:\n\n\nAnother plugin has disabled the 'Your Search' features.\n\n\nYou may disable the other plugin or change the load order of \nthe plugins (by changing the names of the tiddlers)\nto enable the 'Your Search' features.")}};setTimeout(checkForOtherHijacker,5000);abego.YourSearch.getStandardRankFunction=function(){return standardRankFunction};abego.YourSearch.getRankFunction=function(){return abego.YourSearch.getStandardRankFunction()};abego.YourSearch.getCurrentTiddler=function(){return currentTiddler};abego.YourSearch.closeResult=function(){closeResult()};abego.YourSearch.getFoundTiddlers=function(){return lastResults};abego.YourSearch.getQuery=function(){return lastQuery};abego.YourSearch.onShowResult=function(useOldResult){highlightHack=lastQuery?lastQuery.getMarkRegExp():null;if(!useOldResult){pager.setItems(getLastResults())}if(!resultElement){resultElement=createTiddlyElement(document.body,"div",yourSearchResultID,"yourSearchResult")}else{if(resultElement.parentNode!=document.body){document.body.appendChild(resultElement)}}refreshResult();highlightHack=null}})()};
//%/
<<forEachTiddler where 'tiddler.tags.contains$1(["$2"])' sortBy 'tiddler.title.toUpperCase()' ascending write '"• \<\<tiddler [["+tiddler.title+"::z]]\>\> \<\<tiddler [["+tiddler.title+"::f]]\>\> [["+tiddler.title+"]]\r\n"' begin '""' end '""' none '"//aucun//"'>>
<<forEachTiddler where 'tiddler.tags.contains$1(["$2"])' sortBy 'tiddler.title.toUpperCase()' ascending write '"• \<\<tiddler [["+tiddler.title+"::n]]\>\>\r\n"' begin '""' end '""' none '"//aucun//"'>>
<<forEachTiddler where 'tiddler.tags.contains$1(["$2"])' sortBy 'tiddler.title.toUpperCase()' ascending write '"• \<\<tiddler [["+tiddler.title+"::d]]\>\> \<\<tiddler [["+tiddler.title+"::n]]\>\>\r\n"' begin '""' end '""' none '"//aucun//"'>>
<<forEachTiddler where 'tiddler.tags.contains$1(["$2"])' sortBy 'tiddler.title.toUpperCase()' ascending write '"# \<\<tiddler [["+tiddler.title+"::n]]\>\>\r\n"' begin '""' end '""' none '"//aucun//"'>>
<<forEachTiddler where 'tiddler.tags.contains$1(["$2"])' write '""' end 'count' none '"0"'>>
!!All $1 (<<forEachTiddler where 'tiddler.tags.contains$1(["$2"])' write '""' end 'count' none '"0"'>>)
<<forEachTiddler where 'tiddler.tags.contains$1(["$2"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "|#|Tid|Org|Nom|URL|f|TLD|Zon|((N/G(National ou Gouvernemental)))|((Tel(Téléphone)))|((Hot(Emergency / Hotline)))|((Eml(Email)))|((T(Type)))|((FR(InterCERT FRance)))|((1st(FIRST)))|((TFC(TF-CSIRT)))|((CSN(CSIRTs Network)))|((EGC(European Government CERTs)))|((AfC(AfricaCERT)))|((TBA(TrustBroker Africa)))|((PaC(PaCSON / Pacific Cyber Security Operational Network)))|((Ann.(Année de création)))|((RFC(RFC 2350)))|PGP|h\n|" : "\n|")+(index+1)+"|[["+tiddler.title+"]] |\<\<tiddler [["+tiddler.title+"::o]]\>\> |\<\<tiddler [["+tiddler.title+"::n]]\>\> |\<\<tiddler [["+tiddler.title+"::u]]\>\> |\<\<tiddler [["+tiddler.title+"::f]]\>\> |\<\<tiddler [["+tiddler.title+"::d]]\>\> |\<\<tiddler [["+tiddler.title+"::z]]\>\> |\<\<tiddler [["+tiddler.title+"::g]]\>\> |\<\<tiddler [["+tiddler.title+"::t]]\>\> |\<\<tiddler [["+tiddler.title+"::h]]\>\> |\<\<tiddler [["+tiddler.title+"::m]]\>\> |\<\<tiddler [["+tiddler.title+"::y]]\>\> |\<\<tiddler [["+tiddler.title+"::aFR]]\>\> |\<\<tiddler [["+tiddler.title+"::1]]\>\> |\<\<tiddler [["+tiddler.title+"::7]]\>\> |\<\<tiddler [["+tiddler.title+"::75]]\>\> |\<\<tiddler [["+tiddler.title+"::76]]\>\> |\<\<tiddler [["+tiddler.title+"::44]]\>\> |\<\<tiddler [["+tiddler.title+"::47]]\>\> |\<\<tiddler [["+tiddler.title+"::49]]\>\> |\<\<tiddler [["+tiddler.title+"::c]]\>\> |\<\<tiddler [["+tiddler.title+"::r]]\>\> |\<\<tiddler [["+tiddler.title+"::p]]\>\> |"' begin '""' end '""' none '"!NONE"'>>
!!<<tiddler [[$1::n]]>>
|>|!Identification|!|>|!Associations|
|Pays| <<tiddler [[$1::d]]>> |~|@@font-size:150%;<<tiddler [[$1::f]]>>@@ | <<tiddler [[$1::aAT]]>><<tiddler [[$1::aBE]]>><<tiddler [[$1::aCH]]>><<tiddler [[$1::aDE]]>><<tiddler [[$1::aES]]>><<tiddler [[$1::aFR]]>><<tiddler [[$1::aJP]]>><<tiddler [[$1::aLU]]>><<tiddler [[$1::aNL]]>><<tiddler [[$1::aSE]]>> |
|Nom| <<tiddler [[$1::n]]>> |~|FIRST| <<tiddler [[$1::1]]>> |
|Affiliation| <<tiddler [[$1::o]]>> |~|TF-CSIRT| <<tiddler [[$1::7]]>> |
|Type de CSIRT| <<tiddler [[$1::y]]>> |~|CSIRTs Network| <<tiddler [[$1::75]]>> |
|Site Web| <<tiddler [[$1::u]]>> |~|EGC| <<tiddler [[$1::76]]>> |
|Téléphone| <<tiddler [[$1::t]]>> |~|AfricaCERT| <<tiddler [[$1::44]]>> |
|Urgence| <<tiddler [[$1::h]]>> |~|TrustBroker Africa| <<tiddler [[$1::47]]>> |
|Courriel| <<tiddler [[$1::m]]>> |~|CSIRTAmericas| <<tiddler [[$1::43]]>> |
|RFC 2350| <<tiddler [[$1::r]]>> |~|PaCSON| <<tiddler [[$1::49]]>> |
|Clé PGP| <<tiddler [[$1::p]]>> |~|||
|>|>|>|>|!|
|>|>|>|>|<<tiddler [[$1::H]]>> <<tiddler [[$1::j]]>>^^<<tiddler [[$1::pRi]]>><<tiddler [[$1::pDi]]>><<tiddler [[$1::pAC]]>><<tiddler [[$1::pAs]]>><<tiddler [[$1::pAM]]>>^^|
|__Nomenclature__+++[»]🕾:Téléphone •• ☎:''Urgence'' •• 🖂:Courriel
⇗:''Lien'' Web •• ⇘:''Téléchargemen''t •• ▬:''Hors contexte''=== |c
/% |^^Blog^^| ^^<<tiddler [[$1::b]]>>^^ |!|^^Flux RSS^^| ^^<<tiddler [[$1::Bss]]>>^^ |
|^^LinkedIn^^| ^^<<tiddler [[$1::l]]>>^^ |~|^^Flux LinkedIn^^| ^^<<tiddler [[$1::L]]>>^^ |
|>|>|>|>|bgcolor:#000091;|
^^PACS
PASSI^^ | ^^ %/
!!<<tiddler [[$1::n]]>> • @@font-size:200%;<<tiddler [[$1::f]]>>@@
|>|>| Indice de confiance → | <<tiddler [[$1::Tru]]>>/10 |
|Pays| <<tiddler [[$1::d]]>> | <<tiddler [[$1::f]]>> ||
|Site Web| <<tiddler [[$1::u]]>> |^^Flux RSS^^| <<tiddler [[$1::Wss]]>> |
|Blog| <<tiddler [[$1::b]]>> |^^Flux RSS^^| <<tiddler [[$1::Bss]]>> |
|Rapports| <<tiddler [[$1::Rpt]]>> |^^Flux RSS^^| <<tiddler [[$1::Rss]]>> |
|Newsletters| <<tiddler [[$1::Nws]]>> |^^Flux RSS^^| <<tiddler [[$1::Nss]]>> |
|Medium| <<tiddler [[$1::Mdm]]>> |^^Flux RSS^^| <<tiddler [[$1::Mss]]>> |
|Mastodon| <<tiddler [[$1::Mtd]]>> |Twitter| <<tiddler [[$1::Twi]]>> |
|LinkedIn| <<tiddler [[$1::l]]>> |^^Flux^^| <<tiddler [[$1::L]]>> |
|GitHub| <<tiddler [[$1::Git]]>> |
|IOC| <<tiddler [[$1::IOC]]>> |
|YouTube| <<tiddler [[$1::You]]>> |
|>|>|>|>|bgcolor:#000091;|
!!$5 - $2 : <<tiddler f_NbAllny with: '$3' '$1'>>
<<forEachTiddler where 'tiddler.tags.contains$3(["$1"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "|#|$6|Nom du CSIRT|🕮| Tél | ^^Site^^ | ^^InterCERT
France^^ | ^^TF-CSIRT^^ | ^^FIRST^^ | ^^Création^^ | ^^RFC
2350^^ | ^^Clé
PGP^^ |h\n| " : "\n| ")+(index+1)+"|^^ \<\<tiddler [["+tiddler.title+"::o]]\>\>^^|\'\'\<\<tiddler [["+tiddler.title+"::n]]\>\>\'\' | [[🕮|"+tiddler.title+"]] | \<\<tiddler [["+tiddler.title+"::t]]\>\> | \<\<tiddler [["+tiddler.title+"::u]]\>\> | \<\<tiddler [["+tiddler.title+"::aFR]]\>\> | \<\<tiddler [["+tiddler.title+"::7]]\>\> | \<\<tiddler [["+tiddler.title+"::1]]\>\> | ^^\<\<tiddler [["+tiddler.title+"::c]]\>\>^^ | \<\<tiddler [["+tiddler.title+"::r]]\>\> | \<\<tiddler [["+tiddler.title+"::p]]\>\> |"' end '"\n|//Sources agrégées et connaissances personnelles ©// |c"'>>
!!$5 - $2 : <<tiddler f_NbAllny with: '$3' '$1'>>
<<forEachTiddler where 'tiddler.tags.contains$3(["$1"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "§,© CSIRT.FR\n§#,$6,Nom_CSIRT,Tél,Site,InterCERT_France,TF-CSIRT,FIRST,Création,RFC_2350,Clé_PGP,Telechargement_PGP,Horaires\n§":"\n§ ")+(index+1)+", \<\<tiddler [["+tiddler.title+"::o]]\>\>,\<\<tiddler [["+tiddler.title+"::n]]\>\>,\<\<tiddler [["+tiddler.title+"::t]]\>\>,\<\<tiddler [["+tiddler.title+"::u]]\>\>,\<\<tiddler [["+tiddler.title+"::aFR]]\>\>,\<\<tiddler [["+tiddler.title+"::7]]\>\>,\<\<tiddler [["+tiddler.title+"::1]]\>\>,\<\<tiddler [["+tiddler.title+"::c]]\>\>,\<\<tiddler [["+tiddler.title+"::r]]\>\>,\<\<tiddler [["+tiddler.title+"::R]]\>\>,\<\<tiddler [["+tiddler.title+"::p]]\>\>,\<\<tiddler [["+tiddler.title+"::P]]\>\>,\<\<tiddler [["+tiddler.title+"::H]]\>\>,"' end '""'>>
<<forEachTiddler where 'tiddler.tags.contains$1(["$2"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "|#|Entité|Nom du CSIRT|🕮| ^^Site^^ | ^^InterCERT
France^^ | ^^TF-CSIRT^^ | ^^FIRST^^ |h\n| " : "\n| ")+(index+1)+"|^^ \<\<tiddler [["+tiddler.title+"::o]]\>\>^^|\'\'\<\<tiddler [["+tiddler.title+"::n]]\>\>\'\' | [[🕮|"+tiddler.title+"]] | \<\<tiddler [["+tiddler.title+"::u]]\>\> | \<\<tiddler [["+tiddler.title+"::aFR]]\>\> | \<\<tiddler [["+tiddler.title+"::7]]\>\> | \<\<tiddler [["+tiddler.title+"::1]]\>\> |"' end '""'>>
!!$5 - <<tiddler f_NbAllny with: '$3' '$1'>> $2
<<forEachTiddler where 'tiddler.tags.contains$3(["$1"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "|#|$6|Nom du CSIRT|🕮| Tél | ^^Site^^ | ^^TF-CSIRT^^ | ^^FIRST^^ | ^^Création^^ | ^^RFC
2350^^ | ^^Clé
PGP^^ |h\n| " : "\n| ")+(index+1)+"|^^ \<\<tiddler [["+tiddler.title+"::o]]\>\>^^|\'\'\<\<tiddler [["+tiddler.title+"::n]]\>\>\'\' | [[🕮|"+tiddler.title+"]] | \<\<tiddler [["+tiddler.title+"::t]]\>\> | \<\<tiddler [["+tiddler.title+"::u]]\>\> | \<\<tiddler [["+tiddler.title+"::7]]\>\> | \<\<tiddler [["+tiddler.title+"::1]]\>\> | ^^\<\<tiddler [["+tiddler.title+"::c]]\>\>^^ | \<\<tiddler [["+tiddler.title+"::r]]\>\> | ^^\<\<tiddler [["+tiddler.title+"::p]]\>\>^^ |"' end '"\n|Sources agrégées et connaissances personnelles ©[[CSIRT.fr|https://csirt.fr/]]|c"'>>
<<forEachTiddler where 'tiddler.tags.containsAny(["$1"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "| Annuaire… et connaissances personnelles |c\n|#|Tid|Nom|URL|Tru|>| TLD |Lin|L|b|Bss|Mdm|Rpt|Nws|Twi|Mtd|Git|IOC|CTI|You|Fbk|h\n| ^^" : "\n| ^^")+(index+1)+"^^ | ^^[[⇒|"+tiddler.title+"]]^^ |^^\<\<tiddler [["+tiddler.title+"::n]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::u]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::Tru]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::d]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::f]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::l]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::L]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::b]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::Bss]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::Mdm]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::Rpt]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::Nws]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::Twi]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::Mtd]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::Git]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::IOC]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::CTI]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::You]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::Fbk]]\>\>^^ |"'>>
!!Les <<tiddler f_NbAllny with: '$2' '$1'>> $3
<<forEachTiddler where 'tiddler.tags.contains$2(["$1"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "| ^^Sources agrégées \(\(multiples\(FIRST, TF-CSIRT/TI, ENISA, EGC, AfricaCERT, TrustBroker Africa, OIC-CERT, PaCSON… et connaissances personnelles\)\)\) • Les colonnes \"PaCSON\", \"RFC 2350\" et \"PGP\" ne sont pas encore complètes^^|c\n|#|>|Pays|((Nom(Nom du CSIRT/PSIRT)))|((🕮(Fiche synthétique)))| ((Tel(Téléphone))) | ((Lien(Site Web))) | ((1st(FIRST))) | ((TFC(TF-CSIRT))) | ((CSN(CSIRTs Network))) | ((EGC(European Government CERTs))) | ((AfC(AfricaCERT))) | ((TBA(TrustBroker Africa))) | ((OIC(OIC-CERT / Organisation of Islamic Cooperation CERTs))) | ((PaC(PaCSON / Pacific Cyber Security Operational Network))) | ((RFC(RFC 2350))) | ((PGP(Clé PGP))) |h\n| " : "\n| ")+(index+1)+"| ^^\<\<tiddler [["+tiddler.title+"::d]]\>\>^^ | \<\<tiddler [["+tiddler.title+"::f]]\>\> |\'\'\<\<tiddler [["+tiddler.title+"::n]]\>\>\'\' | [[🕮|"+tiddler.title+"]] | ^^\<\<tiddler [["+tiddler.title+"::t]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::u]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::1]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::7]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::75]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::76]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::44]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::47]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::99]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::49]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::r]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::p]]\>\>^^ |"'>>
!!Les <<tiddler f_NbAllny with: '$2' '$1'>> $3
<<forEachTiddler where 'tiddler.tags.contains$2(["$1"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "| ^^Sources agrégées \(\(multiples\(FIRST, TF-CSIRT/TI, ENISA, EGC, AfricaCERT, TrustBroker Africa, OIC-CERT… et connaissances personnelles\)\)\) • Les colonnes \"RFC 2350\" et \"PGP\" ne sont pas encore complètes^^|c\n|#|>|Pays|((Nom(Nom du CSIRT/PSIRT)))|((🕮(Fiche synthétique)))| ((Tel(Téléphone))) | ((Lien(Site Web))) | ((1st(FIRST))) | ((TFC(TF-CSIRT))) | ((AfC(AfricaCERT))) | ((TBA(TrustBroker Africa))) | ((OIC(OIC-CERT / Organisation of Islamic Cooperation CERTs))) | ((RFC(RFC 2350))) | ((PGP(Clé PGP))) |h\n| " : "\n| ")+(index+1)+"| ^^\<\<tiddler [["+tiddler.title+"::d]]\>\>^^ | \<\<tiddler [["+tiddler.title+"::f]]\>\> |\'\'\<\<tiddler [["+tiddler.title+"::n]]\>\>\'\' | [[🕮|"+tiddler.title+"]] | ^^\<\<tiddler [["+tiddler.title+"::t]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::u]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::1]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::7]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::44]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::47]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::99]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::r]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::p]]\>\>^^ |"'>>
!!Les <<tiddler f_NbAllny with: '$2' '$1'>> $3
<<forEachTiddler where 'tiddler.tags.contains$2(["$1"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "| ^^Sources agrégées \(\(multiples\(FIRST, TF-CSIRT/TI, OAS… et connaissances personnelles\)\)\)^^|c\n|#|>|Pays|((Nom(Nom du CSIRT/PSIRT)))|((🕮(Fiche synthétique)))| ((Tel(Téléphone))) | ((Lien(Site Web))) | ((1st(FIRST))) | ((TFC(TF-CSIRT))) ((OAS/CISRT Americas(Organisation of American States / CISRT Americas Network))) | ((RFC(RFC 2350))) | ((PGP(Clé PGP))) |h\n| " : "\n| ")+(index+1)+"| ^^\<\<tiddler [["+tiddler.title+"::d]]\>\>^^ | \<\<tiddler [["+tiddler.title+"::f]]\>\> |\'\'\<\<tiddler [["+tiddler.title+"::n]]\>\>\'\' | [[🕮|"+tiddler.title+"]] | ^^\<\<tiddler [["+tiddler.title+"::t]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::u]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::1]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::7]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::75]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::76]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::44]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::47]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::99]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::49]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::r]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::p]]\>\>^^ |"'>>
!!Les <<tiddler f_NbAllny with: '$2' '$1'>> $3
<<forEachTiddler where 'tiddler.tags.contains$2(["$1"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "| ^^Sources agrégées \(\(multiples\(FIRST, TF-CSIRT/TI, PaCSON … et connaissances personnelles\)\)\) • Les colonnes \"PaCSON\", \"RFC 2350\" et \"PGP\" ne sont pas encore complètes^^|c\n|#|>|Pays|((Nom(Nom du CSIRT/PSIRT)))|((🕮(Fiche synthétique)))| ((Tel(Téléphone))) | ((Lien(Site Web))) | ((1st(FIRST))) | ((PaC(PaCSON / Pacific Cyber Security Operational Network))) | ((RFC(RFC 2350))) | ((PGP(Clé PGP))) |h\n| " : "\n| ")+(index+1)+"| ^^\<\<tiddler [["+tiddler.title+"::d]]\>\>^^ | \<\<tiddler [["+tiddler.title+"::f]]\>\> |\'\'\<\<tiddler [["+tiddler.title+"::n]]\>\>\'\' | [[🕮|"+tiddler.title+"]] | ^^\<\<tiddler [["+tiddler.title+"::t]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::u]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::1]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::49]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::r]]\>\>^^ | ^^\<\<tiddler [["+tiddler.title+"::p]]\>\>^^ |"'>>
!$1
<<forEachTiddler where 'tiddler.tags.containsAny(["$2"])' sortBy 'tiddler.title.toUpperCase()' ascending write '"| \<\<tiddler [["+tiddler.title+"::ICO]]\>\> |\<\<tiddler [["+tiddler.title+"::f]]\>\>\<\<tiddler [["+tiddler.title+"::Obj]]\>\> \<\<tiddler [["+tiddler.title+"::Dat]]\>\> \<\<tiddler [["+tiddler.title+"::Loc]]\>\> ^^\<\<tiddler [["+tiddler.title+"::Len]]\>\>^^ \<\<tiddler [["+tiddler.title+"::Lnk]]\>\> | \<\<tiddler [["+tiddler.title+"::Img]]\>\> |\n"' begin '""' end '""' none '"////"'>>
!!@@color:#222;font-size:150%;$3@@ <<forEachTiddler where 'tiddler.tags.contains$1(["Webo_","$2"])' write '""' end 'count' none '"0"'>> document(s)
<<forEachTiddler where 'tiddler.tags.contains$1(["$2"])' sortBy 'tiddler.title.toUpperCase()' descending write '((index == 0) ? "|#|Source|Titre|Date|Langue|Annonce|HTML|PDF|DOCX|XLSX|PPTX|TXT|Autres|h\n|" : "\n|")+(index+1)+"|\<\<tiddler [["+tiddler.title+"::Src]]\>\> |\<\<tiddler [["+tiddler.title+"::Tit]]\>\> |\<\<tiddler [["+tiddler.title+"::Dat]]\>\> |\<\<tiddler [["+tiddler.title+"::Lng]]\>\> |\<\<tiddler [["+tiddler.title+"::Ann]]\>\> |\<\<tiddler [["+tiddler.title+"::Htm]]\>\> |\<\<tiddler [["+tiddler.title+"::Pdf]]\>\> |\<\<tiddler [["+tiddler.title+"::Doc]]\>\> |\<\<tiddler [["+tiddler.title+"::Xls]]\>\> |\<\<tiddler [["+tiddler.title+"::Ppt]]\>\> |\<\<tiddler [["+tiddler.title+"::Txt]]\>\> |\<\<tiddler [["+tiddler.title+"::Div]]\>\> |"' begin '""' end '""' none '"Aucun document"'>>
!!$2 - <<tiddler f_NbAllny with: 'Any' '$1T_'>> CSIRTs [>img[iCC/$3.png]]
|• ''<<tiddler f_NbAllny with: 'All' '$1_","7T_'>>'' sont membres de la [[TF-CSIRT|Association - TF-CSIRT]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_","7T_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1_","1T_'>>'' sont membres du [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_","1T_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1_","7T_","1T_'>>'' sont membres de la [[TF-CSIRT|Association - TF-CSIRT]] et du [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_","7T_","1T_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1_Z_'>>'' ne font partie d'aucune association +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_Z_'>>}}}=== |
!!$2 - <<tiddler f_NbAllny with: 'Any' '$1_P_'>> Personnes Affiliées/Liaisons [>img[iCC/$3.png]]
|• ''<<tiddler f_NbAllny with: 'All' '$1_P_","7P_'>>'' //Associates// à la [[TF-CSIRT|Association - TF-CSIRT]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_P_","7P_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1_P_","1P_'>>'' //Liaisons// au [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_P_","1P_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1_P_","7_","1P_'>>'' sont membres de la [[TF-CSIRT|Association - TF-CSIRT]] et du [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_P_","7_","1P_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1_P_Z_'>>'' ne font partie d'aucune association +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_P_Z_'>>}}}=== |
|Il y a ''<<tiddler f_NbAllny with: 'Any' 'M_$1_P_'>>'' sont membres à titre personnel (//ad personam//) dont la participation n'est pas publique|c
!!$2 - <<tiddler f_NbAllny with: 'Any' '$1T_'>> CSIRTs [>img[iCC/$3.png]]
|• ''<<tiddler f_NbAllny with: 'All' '$1_","a$1_'>>'' sont membres du [[$4|Association - $1 - $4]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_","a$1_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1_","7T_'>>'' sont membres de la [[TF-CSIRT|Association - TF-CSIRT]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_","7T_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1_","1T_'>>'' sont membres du [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_","1T_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1_Z_'>>'' ne font partie d'aucune association +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_Z_'>>}}}=== |• ''<<tiddler f_NbAllny with: 'All' 'a$1_","7T_","1T_'>>'' sont membres du [[$4|Association - $1 - $4]], de la [[TF-CSIRT|Association - TF-CSIRT]], et du [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' 'a$1_","7T_","1T_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' 'a$1_","7T_'>>'' sont membres du [[$4|Association - $1 - $4]] et de la [[TF-CSIRT|Association - TF-CSIRT]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' 'a$1_","7T_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' 'a$1_","1T_'>>'' sont membres du [[$4|Association - $1 - $4]] et du [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' 'a$1_","1T_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1_","7T_","1T_'>>'' sont membres de la [[TF-CSIRT|Association - TF-CSIRT]] et du [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_","7T_","1T_'>>}}}=== |
!!$2 - <<tiddler f_NbAllny with: 'Any' '$1P_'>> Personnes Affiliées/Liaisons [>img[iCC/$3.png]]
|• ''<<tiddler f_NbAllny with: 'All' '$1P_","a$1_'>>'' sont membres du [[$4|Association - $1 - $4]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1P_","a$1_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1P_","7P_'>>'' //Associates// à la [[TF-CSIRT|Association - TF-CSIRT]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1P_","7P_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1P_","1P_'>>'' //Liaisons// au [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1P_","1P_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1P_Z_'>>'' ne font partie d'aucune association +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1P_Z_'>>}}}=== |• ''<<tiddler f_NbAllny with: 'All' 'a$1_","1P_","7_'>>'' sont membres du [[$4|Association - $1 - $4]], de la [[TF-CSIRT|Association - TF-CSIRT]], et du [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' 'a$1_","7_","1P_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' 'a$1_","1P_'>>'' sont membres du [[$4|Association - $1 - $4]] et de la [[TF-CSIRT|Association - TF-CSIRT]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' 'a$1_","7_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' 'a$1_","1P_'>>'' sont membres du [[$4|Association - $1 - $4]] et du [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' 'a$1_","1P_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1P_","7_","1P_'>>'' sont membres de la [[TF-CSIRT|Association - TF-CSIRT]] et du [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1P_","7_","1P_'>>}}}=== |
|Il y a ''<<tiddler f_NbAllny with: 'Any' 'M_$1P_'>>'' membres à titre personnel (//ad personam//) et leur participation n'est pas publique|c
!!$2 - <<tiddler f_NbAllny with: 'Any' '$1T_'>> CSIRTs [>img[iCC/$3.png]]
|• ''<<tiddler f_NbAllny with: 'All' '$1_","a$1_'>>'' sont membres du [[$4|Association - $1 - $4]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_","a$1_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1_","7T_'>>'' sont membres de la [[TF-CSIRT|Association - TF-CSIRT]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_","7T_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1_","1T_'>>'' sont membres du [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_","1T_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1_Z_'>>'' ne font partie d'aucune association +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_Z_'>>}}}=== |• ''<<tiddler f_NbAllny with: 'All' 'a$1_","7T_","1T_'>>'' sont membres du [[$4|Association - $1 - $4]], de la [[TF-CSIRT|Association - TF-CSIRT]], et du [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' 'a$1_","7T_","1T_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' 'a$1_","7T_'>>'' sont membres du [[$4|Association - $1 - $4]] et de la [[TF-CSIRT|Association - TF-CSIRT]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' 'a$1_","7T_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' 'a$1_","1T_'>>'' sont membres du [[$4|Association - $1 - $4]] et du [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' 'a$1_","1T_'>>}}}===
• ''<<tiddler f_NbAllny with: 'All' '$1_","7T_","1T_'>>'' sont membres de la [[TF-CSIRT|Association - TF-CSIRT]] et du [[FIRST|Association - FIRST]] +++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '$1_","7T_","1T_'>>}}}=== |
!!$2 - Répartition des ''<<tiddler f_NbAllny with: 'All' '$1_","7_'>>'' membres de la [[TF-CSIRT|Association - TF-CSIRT]]
|Statut|Quantité|h
|//Associate//| <<tiddler f_NbAllny with: 'All' '$1_","7_","7P_'>> |
|//Listed//| <<tiddler f_NbAllny with: 'All' '$1_","7_","7L_'>> |
|//Accredited//| <<tiddler f_NbAllny with: 'All' '$1_","7_","7A_'>> |
|//Certified//| <<tiddler f_NbAllny with: 'All' '$1_","7_","7C_'>> |
|//Suspended//| <<tiddler f_NbAllny with: 'All' '$1_","7_","7S_'>> |
^^@@color:#000091;▬▬▬▬@@
Lien vers l'annuaire des membres de la ''TF-CSIRT'' : https://trusted-introducer.org/directory/country_LICSA.html ^^
!!$3 - Association nationale de CSIRTs
[>img(auto,40px)[iCSIRT/Assoc_$2.png]]''$1'' $6.
''$1'' est une association qui regroupe ''<<tiddler [[$4::q]]>>'' des ''<<tiddler [[$4::Tot]]>>'' CSIRTs opérant dans le pays (<<tiddler [[$4::f]]>>).
|>|>| Pays |Nom|Site| Qté|Membres|Contact|GitHub|Création|h
|<<tiddler [[$4::Pay]]>>| <<tiddler [[$4::d]]>> | <<tiddler [[$4::f]]>> |<<tiddler [[$4::n]]>>| <<tiddler [[$4::u]]>> | ''<<tiddler [[$4::q]]>>'' | <<tiddler [[$4::Mem]]>> | <<tiddler [[$4::Png]]>> | <<tiddler [[$4::g]]>> | <<tiddler [[$4::c]]>> |
|Voir aussi la [[liste de tous les CSIRTs|CSIRTs - $2 - Tous]] <<tiddler [[$4::f]]>>|c
<<tiddler .ReplaceTiddlerTitle with: [[Association de CSIRTs - $3]]>>
{{floatL{
<<tabs tMainM '🇫🇷' 'Menu en français' [[MainMenuFR]] '🇬🇧' 'Menu en anglais' [[MainMenuEN]]>>
<<tiddler HeadlinesRoll>>
}}}
|ssTablN0|k
| @@color:#000091;<html><i class="fa fa-home" aria-hidden="true"></i></html>@@ |bgcolor:#E1000F;!|^^__[[Accueil]]__^^|
|bgcolor:#E0FFFF; @@color:#000091;<html><i class="fa fa-graduation-cap" aria-hidden="true"></i></html>@@ |~|bgcolor:#E0FFFF;^^__[[Formations|Formations - Calendrier]]__^^|
|bgcolor:#FFFF00; @@color:#000091;<html><i class="fa fa-address-book" aria-hidden="true"></i></html>@@ |~|bgcolor:#FFFF00;^^__''[[Listes CSIRTs|Annuaire]]''__^^|
| @@color:#000091;<html><i class="fa fa-book" aria-hidden="true"></i></html>@@ |~|^^__[[Référentiels|Référentiels - Frameworks]]__^^|
| @@color:#000091;<html><i class="fa fa-triangle-exclamation" aria-hidden="true"></i></html>@@ |~|^^__[[Vulnérabilités]]__^^|
| @@color:#000091;<html><i class="fa fa-skull-crossbones" aria-hidden="true"></i></html>@@ |~|^^__[[Attaquants|Groupes Attaquants]]__^^|
| @@color:#000091;<html><i class="fa-brands fa-d-and-d" aria-hidden="true"></i></html>@@ |~|^^__[[MITRE|Référentiels MITRE]] [[ATT&CK|Référentiels MITRE]]__^^|
| @@color:#000091;<html><i class="fa fa-binoculars" aria-hidden="true"></i></html>@@ |~|^^__[[Veille]]__ & __[[CTI|Threat Intelligence - Introduction]]__^^|
| @@color:#000091;<html><i class="fa fa-book-atlas" aria-hidden="true"></i></html>@@ |~|@@color:#AAAAAA;^^__[[Codes/Sigles]]__^^@@|
| @@color:#000091;<html><i class="fa fa-podcast" aria-hidden="true"></i></html>@@ |~|^^__[[Podcasts]]__^^|
| @@color:#000091;<html><i class="fa-regular fa-calendar-days" aria-hidden="true"></i></html>@@ |~|^^__[[Agenda]]__^^|
| @@color:#000091;<html><i class="fa-solid fa-cloud" aria-hidden="true"></i></html>@@ |~|^^__[[Sécurité|Cloud]] [[Cloud]]__^^|
| @@color:#000091;<html><i class="fa fa-person-digging" aria-hidden="true"></i></html>@@ |~|^^__[[Divers]]__^^|
| @@color:#000091;<html><i class="fa-regular fa-folder-open" aria-hidden="true"></i></html>@@ |~|^^__[[Webographie]]__^^|
| @@color:#000091;<html><i class="fa fa-pencil" aria-hidden="true"></i></html>@@ |~|^^[[Contact]]^^|
|ssTablN0|k
| @@color:#000091;<html><i class="fa fa-home" aria-hidden="true"></i></html>@@ |bgcolor:#E1000F;!|^^__[[Home]]__^^|
|bgcolor:#E0FFFF; @@color:#000091;<html><i class="fa fa-graduation-cap" aria-hidden="true"></i></html>@@ |~|bgcolor:#E0FFFF;^^__[[Training|Formations - Calendrier]]__^^|
|bgcolor:#FFFF00; @@color:#000091;<html><i class="fa fa-address-book" aria-hidden="true"></i></html>@@ |~|bgcolor:#FFFF00;^^__''[[CSIRTs' List|Annuaire]]''__^^|
| @@color:#000091;<html><i class="fa fa-book" aria-hidden="true"></i></html>@@ |~|^^__[[Frameworks|Référentiels - Frameworks]]__^^|
| @@color:#000091;<html><i class="fa fa-triangle-exclamation" aria-hidden="true"></i></html>@@ |~|^^__[[Vulnerabilities|Vulnérabilités]]__^^|
| @@color:#000091;<html><i class="fa fa-skull-crossbones" aria-hidden="true"></i></html>@@ |~|^^__[[Attackers|Groupes Attaquants]]__^^|
| @@color:#000091;<html><i class="fa-brands fa-d-and-d" aria-hidden="true"></i></html>@@ |~|^^__[[MITRE|Référentiels MITRE]] [[ATT&CK|Référentiels MITRE]]__^^|
| @@color:#000091;<html><i class="fa fa-binoculars" aria-hidden="true"></i></html>@@ |~|^^__[[Watch|Veille]]__ & __[[CTI|Threat Intelligence - Introduction]]__^^|
| @@color:#000091;<html><i class="fa fa-book-atlas" aria-hidden="true"></i></html>@@ |~|@@color:#AAAAAA;^^__[[Codes|Codes/Sigles]]__^^@@|
| @@color:#000091;<html><i class="fa fa-podcast" aria-hidden="true"></i></html>@@ |~|^^__[[Podcasts]]__^^|
| @@color:#000091;<html><i class="fa-regular fa-calendar-days" aria-hidden="true"></i></html>@@ |~|^^__[[Calendar|Agenda]]__^^|
| @@color:#000091;<html><i class="fa-solid fa-cloud" aria-hidden="true"></i></html>@@ |~|^^__[[Cloud]] [[Security|Cloud]]__^^|
| @@color:#000091;<html><i class="fa fa-person-digging" aria-hidden="true"></i></html>@@ |~|^^__[[Misc|Divers]]__^^|
| @@color:#000091;<html><i class="fa-regular fa-folder-open" aria-hidden="true"></i></html>@@ |~|^^__[[Links|Webographie]]__^^|
| @@color:#000091;<html><i class="fa fa-pencil" aria-hidden="true"></i></html>@@ |~|^^[[Contact]]^^|
<<tiddler .ToggleLeftSidebar>>
//• Référentiels, Annuaires… • Frameworks, Directories •//
f
<!--{{{-->
<div class='toolbar' macro='toolbar [[ToolbarCommands::ViewToolbar]]'></div>
<div class='title' macro='view title'></div>
<div class='viewer' macro='view text wikified'></div>
<div class='viewer' macro='tiddler ReplaceDoubleClick'></div>
<div class='tagClear'></div>
<!--}}}-->
/*
|Author|Jeremy Ruston ^^(Contributors: Yakov Litvin, Eric Shulman, Olivier Caleff …)^^|
|Version|OC (2024.12.11)|
*/
//{{{
config.options.txtUserName='Olivier_Caleff';
config.options.chkAnimate=false;
config.options.chkRegExpSearch=false;
config.options.chkCaseSensitiveSearch=false;
config.options.chkOpenInNewWindow=true;
config.options.chkForceMinorUpdate=false
config.messages.tiddlerLinkTooltip="→ %0";
config.messages.externalLinkTooltip="→ %0";
config.options.chkHideSiteTitles=true;
config.macros.search.prompt="Recherche sur ce site";
config.macros.search.successMsg="%1 → %0 article(s)";
config.macros.search.failureMsg="%0 → Aucun article";
config.macros.search.label="Recherche";
config.macros.reminders.ndaysString="→ DIFFj.";
config.macros.reminders.todayString="@@color:#000091;→ ''Aujourd'hui''@@";
config.macros.reminders.tomorrowString="@@color:#000091;→ ''Demain''@@";
config.messages.dates.months = ["Janvier", "Fevrier", "Mars", "Avril", "Mai", "Juin", "Juillet", "Aout", "Septembre", "Octobre", "Novembre","Decembre"];
config.messages.dates.days = ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi"];
config.messages.dates.shortMonths = ["Jan", "Fev", "Mar", "Avr", "Mai", "Jun", "Jul", "Aou", "Sep", "Oct", "Nov", "Dec"];
config.messages.dates.shortDays = ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sa"];
config.messages.dates.daySuffixes = ["er","nd","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme","eme"];
config.macros.reminders["emtpyShowRemindersString"] = "Aucun événement à venir";
merge(config.views.wikified,{ dateFormat: "0DD.0MM.YYYY",});
merge(config.macros.search,{ label: "", prompt: "Moteur de recherche local",});
config.options.chkUseYourSearch=true;
config.options.chkPreviewText=false;
config.options.chkSearchAsYouType=true;
config.options.chkSearchInTitle=true;
config.options.chkSearchInText=true;
config.options.chkSearchInTags=true;
config.options.chkSearchExtendedFields=false;
config.options.txtItemsPerPage=10;
config.options.txtItemsPerPageWithPreview=10;
config.options.chkShowLeftSidebar=true;
config.options.chkDisableWikiLinks=true;
config.options.chkAllowLinksFromShadowTiddlers=true;
config.options.chkDisableNonExistingWikiLinks=true;
config.options.chkSinglePageAutoScroll=true;
config.options.chkSinglePagePermalink=false;
config.options.chkSinglePageMode=false;
config.options.chkTopOfPageMode=true;
config.options.chkBottomOfPageMode=true;
config.options.chkShowBreadcrumbs=true;
config.options.txtBreadcrumbsLimit=8;
config.options.chkReorderBreadcrumbs=true;
config.options.txtBreadcrumbsCrumbSeparator=" <html><i class='fa fa-shoe-prints'</i><i class='fa fa-shoe-prints'</i></html> ";
config.options.chkBreadcrumbsSave=false;
config.options.chkShowStartupBreadcrumbs=false;
config.options.chkBreadcrumbsReverse=false;
config.options.chkBreadcrumbsLimitOpenTiddlers=true;
config.options.txtBreadcrumbsLimitOpenTiddlers=20;
config.options.chkBreadcrumbsHideHomeLink=false;
config.options.chkCreateDefaultBreadcrumbs=true;
config.options.chkFramedLinks=false;
config.options.chkFramedLinksTag=true;
config.options.txtFramedLinksTag='_EmbedFrame';
config.options.txtFrameWidth='98%';
config.options.txtFrameHeight='33%';
readOnly=true;
config.options.chkHttpReadOnly=true;
config.options.chkBackstage=false;
showBackstage=false;
merge(config.shadowTiddlers,{ ToolbarCommands: '|~ViewToolbar|closeTiddler closeOthers snapshotPrint|\n|~EditToolbar|+saveTiddler -cancelTiddler deleteTiddler|',});
merge(config.commands.closeTiddler,{ text: "[Fermer/Close]", tooltip: "Fermer/Close article" });
merge(config.commands.closeOthers,{ text: "[Isoler/Close Others]", tooltip: "Fermer/Close les autres/other articles" });
config.views.wikified.dateFormat="0DD.0MM.YYYY";
config.commands.closeTiddler.text="➤ 🇫🇷 Fermer / 🇬🇧 Close ▬ ";
config.commands.closeTiddler.tooltip="🇫🇷 Fermer cet article/tiddler\r\n🇬🇧 Close this article/tiddler";
config.commands.closeOthers.text="➤ 🇫🇷 Isoler / 🇬🇧 Close Others ▬ ";
config.commands.closeOthers.tooltip="🇫🇷 Fermer tous les autres articles/tiddlers\r\n🇬🇧 Close all other articles/tiddlers";
config.messages.messageClose.text="fermer";
config.messages.messageClose.tooltip="fermer la zone de messages";
config.commands.jump.text="➤ 🇫🇷 Aller à / 🇬🇧 Go to ▬ ";
config.commands.jump.tooltip="🇫🇷 Aller vers un autre article/tiddler déjà ouvert\r\n🇬🇧 Go to another open article/tiddler";
config.macros.search.label="";
config.macros.search.prompt="Rechercher sur le site";
config.macros.search.successMsg="%0 articles trouvés contenant %1";
config.macros.search.failureMsg="Aucun article ne contient %0";
config.messages.dates.months = ["Janvier", "Fevrier", "Mars", "Avril", "Mai", "Juin", "Juillet", "Aout", "Septembre", "Octobre", "Novembre","Decembre"];
config.messages.dates.days = ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi"];
config.messages.dates.shortMonths = ["Jan", "Fev", "Mar", "Avr", "Mai", "Jun", "Jul", "Aou", "Sep", "Oct", "Nov", "Dec"];
config.messages.dates.shortDays = ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sa"];
config.messages.dates.daySuffixes = ["er","nd","eme","eme","eme","eme","eme","eme","eme","eme",
"eme","eme","eme","eme","eme","eme","eme","eme","eme","eme",
"eme","eme","eme","eme","eme","eme","eme","eme","eme","eme"];
config.options.txtCalFirstDay=0;
config.options.txtCalStartOfWeekend=5;
config.macros.calendar.journalDateFmt="DDD MMM 0DD YYYY";
config.macros.calendar.journalDateFmt="YYYY MMM DDD 0DD";
//}}}
|Author|[[FontAwesome|https://fontawesome.com/]]|
|Version|6.7.2 (2024.12.13)|
|Author|Jeremy Ruston ^^(Maintainer: Yakov Litvin)^^|
|Version|2.10.2 (2024.12.17)|
|Version|2.10.1 (2024.02.07)|
/*{{{*/
BluFlag: #000091
WhiFlag: #FFFFFF
RedFlag: #E1000F
RedRium: #D31709
.cssDummy { float:right;font-weight:bold; }
.cssBold { font-weight:bold; }
.HeaderMenu .searchField {width:40em;text-align:center;}
/* compact form */
.smallform { white-space:nowrap;}
.smallform input, .smallform textarea, .smallform button, .smallform checkbox, .smallform radio, .smallform select { font-size:8pt;}
/* Alignement */
.floatL { display:block;text-align:left;}
.floatR { display:block;text-align:right;}
.floatC { display:block;text-align:center;}
.ssTabl99 {width:99%}
.ssTabl49 {width:49%}
.ssTabl2,
.ssTabl2 tbody { table-layout:fixed; width:98%;}
.ssTabl98N0, .ssTabl98N0 table, .ssTabl98N0 tbody { font-size:.8em;font-family:Verdana,times,serif; margin:0; padding:0; border:0 !important; width:98%; table-layout:fixed;}
.ssTabl98,
.ssTabl98 table,
.ssTabl98 tbody
{ border:1 !important; width:98%; table-layout:fixed;}
.ssCol30 {width:30%; float:left; margin-left:1%; margin-right:1%; border-color:#014; border-style:solid; border-width:3px;}
.ssCol45 {width:45%; float:left; margin-left:1%;}
/* multi-column tiddler content (not supported in Internet Explorer) */
.ss2col { display:block; -moz-column-count:2; -moz-column-gap:1em; -moz-column-width:49%; /* FireFox */ -webkit-column-count:2; -webkit-column-gap:1em; -webkit-column-width:49%; /* Safari */ column-count:2; column-gap:1em; column-width:50%; /* Opera */ border-color:#000091; border-style:solid; border-width:1px; margin-left:.5%; margin-right:.5%;}
.ss3col { display:block; -moz-column-count:3; -moz-column-gap:1em; -moz-column-width:33%; /* FireFox */ -webkit-column-count:3; -webkit-column-gap:1em; -webkit-column-width:33%; /* Safari */ column-count:3; column-gap:1em; column-width:33%; /* Opera */ border-color:#000091; border-style:solid; border-width:1px; margin-left:.5%; margin-right:.5%;}
.ss4col { display:block; -moz-column-count:4; -moz-column-gap:1em; -moz-column-width:24%; /* FireFox */ -webkit-column-count:4; -webkit-column-gap:1em; -webkit-column-width:24%; /* Safari */ column-count:4; column-gap:1em; column-width:24%; /* Opera */ border-color:#000091; border-style:solid; border-width:1px; margin-left:.5%; margin-right:.5%;}
.clear {clear:both;}
/* ssTablN0 : table without tr/th/td borders */
/* **0CA** .ssTablN0, .ssTablN0 table, .ssTablN0 tr, .ssTablN0 th, .ssTablN0 td, .ssTablN0 tbody { border:0 !important;} */
/* **0CA** .ssTablN0, .ssTablN0 table, .ssTablN0 tr, .ssTablN0 th, .ssTablN0 td, .ssTablN0 tbody { font-size:0.98em;font-family:Verdana,times,serif; margin:0; padding:0; border:1 !important;} */
/* ssTablN0 : table without tr/td borders borders, but with th borders */
/* **0CA** .ssTablN0L, .ssTablN0L tr, .ssTablN0L td, .ssTablN0L tbody { border:0 !important;} */
/* {font-size:.70em;} */
body {font-size:.8em;font-family:Verdana,times,serif; margin:0; padding:0;}
pre, .tagged, .tagging, #messageArea, .popup, .tiddlyLink, .button { border-radius: 5px;}
.tiddlyLink { padding: 0px 2px; margin: 0 -2px;}
img[align="left"] { margin-right: .5em;}
img[align="right"] { margin-left: .5em;}
.toolbar {text-align:left; font-size:.7em;}img"
img {border:1px solid [[ColorPalette::Background]];}
.headerShadow {position:relative; padding:0em 0em 0em 0; left:-1px; top:-1px;}
.headerForeground {position:absolute; padding:0em 0em 0em 0em; left:0.5em; top:0px;}
.headerShadow .left { position: absolute; top: 0;}
.headerShadow .left { left: 0;}
.headerForeground .left {display: none;}
/* InlineTabs */
.tabSelected {font-weight:bold; font-size:125%; color:[[0C4_CSS::BluFlag]]; background:[[ColorPalette::TertiaryPale]]; border-left:2px solid [[ColorPalette::PrimaryMid]]; border-top:2px solid [[ColorPalette::PrimaryLight]]; border-right:2px solid [[ColorPalette::PrimaryMid]]; border-bottom-style:2px solid [[ColorPalette::PrimaryMid]];}
.tabContents {color:[[0C4_CSS::BluFlag]]; background:[[ColorPalette::Background]]; border:2px solid [[ColorPalette::PrimaryMid]];}
/* StyleSheetRotate90 */
.ssRot90 { float:left; width:0.6em; font-size:100%; font-family:Verdana,times,serif; line-height:60%; color:#014 !important; background:inherit !important; transform: rotate(90deg);}
/* StyleSheetLetters */
.firstletter { width:0.6em; font-size:250%; font-family:Verdana,times,serif; line-height:60%; color:#014 !important; background:inherit !important;}
/* .firstletterC { float:center; width:0.6em; font-size:250%; line-height:60%; color:#014 !important; background:inherit !important;} */
.FirstLetter { width:0.6em; font-size:150%; font-family:Verdana,times,serif; line-height:60%; !important; background:inherit !important;}
.SmallLetter { width:1em; font-size:80%; font-family:Verdana,times,serif; line-height:60%; !important; background:inherit !important;}
.Blue250 { float:left; width:0.6em; font-size:250%; font-family:Verdana,times,serif; line-height:60%; color:#014 !important; background:inherit !important;}
/* StyleSheetTableList */
.viewer ul {margin-top:0; margin-bottom:0;}
.viewer {text-align:justify;}
.viewer th {background:[[ColorPalette::TertiaryPale]]; color:[[ColorPalette::PrimaryMid]];}
/* NestedSlidersPlugin */
.floatingPanel { z-index:700; padding:1em; margin:0em; border:1px solid; -moz-border-radius:1em; font-size:8pt; text-align:left;}
.floatingPanel hr { margin:2px 0 1px 0; padding:0;}
#sidebarOptions .sliderPanel { margin:0; padding:0; font-size:1em; background:transparent;}
#sidebarOptions .sliderPanel a { font-weight:normal;}
#sidebarOptions .sliderPanel blockquote { margin:0;padding:0;margin-left:1em; border-left:1px dotted; padding-left:1em }
.selected .floatingPanel .button,
.selected .floatingPanel a:link,
.selected .floatingPanel a:hover,
.selected .floatingPanel a:visited,
.floatingPanel .button,
.floatingPanel a:link,
.floatingPanel a:hover,
.floatingPanel a:visited { color:[[0C4_CSS::BluFlag]] !important;}
.QOTD { color:#014 !important; background:inherit !important;}
.horizTag li.listTitle { display:none }
.horizTag li { display:inline; font-size:90%;}
.horizTag ul { display:inline; margin:0px; padding:0px;}
.viewer td { vertical-align:top;}
/* **0CA** .viewer th { vertical-align:top;} */
/* **0CA** .viewer dl { margin:0;} */
.size75 { font-size:75%;}
.annotation {background:[[ColorPalette::SecondaryLight]]; color:[[ColorPalette::Foreground]]; border:2px solid [[ColorPalette::SecondaryMid]];}
.annotation {padding:1em; margin:1em;}
/*}}}*/
@@font-size:150%;background-color:#F0F0F0;+++^*[☰☰|➤ 🇫🇷 Basculer le menu / 🇬🇧 Toggle Menu ▬ ] <<tiddler [[MainMenu]]>> ===@@@@color:#E1000F;<html><i class='fa-solid fa-bolt' aria-hidden='true'></html> [[CSIRT/CERT|CSIRT ou CERT]] <html><i class='fa fa-book'</i></html> +++^*@{{cssBold{[Référentiels]}}} <<tiddler [[Référentiels - Menu]]>> === <html><i class='fa fa-bullseye' aria-hidden='true'> </i></html> +++^*@{{cssBold{[Maturité SIM3]}}} <<tiddler [[SIM3 - Menu]]>> === • <html><i class='fa fa-graduation-cap'</i></html> @@@@bgcolor:#FFFF00; +++^*@{{cssBold{[Formations]}}} <<tiddler [[Formations - Menu]]>> === @@@@color:#E1000F; <html><i class='fa fa-triangle-exclamation'</i></html> +++^*@{{cssBold{[Vulnérabilités]}}} <<tiddler [[Vulnérabilités - Menu]]>> === <html><i class='fa fa-skull-crossbones'</i></html> +++^*@{{cssBold{[APT]}}} <<tiddler [[Groupes Attaquants - Menu]]>> === • <html><i class='fa fa-traffic-light'</i></html> [[TLP|Traffic Light Protocol]] / [[PAP|Permissible Actions Protocol]]• <html><i class='fa-brands fa-searchengin'</i></html>@@ <<search "Moteur de recherche">> ^^[[Aide|Recherche - Aide]]^^ • <html><a href='https://bsky.app/profile/csirt-fr.bsky.social' target='_blank'><i class='fa-brands fa-bluesky'</i></a></html>
@@color:#000091;▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬@@
© 1901.12.13@20:45:52 ←→ 2038.01.19@03:14:07
@@color:#404040;//No it never propagates if I set a gap or prevention//@@
@@color:#E1000F;▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬@@
[[TLP|Traffic Light Protocol]] : @@color:#FFFFFF;bgcolor:#000000;''TLP:CLEAR''@@
<<QOTD Headlines 2000 noclick norandom>>
[<img(auto,150px)[i/Logo_CSIRT-FR.jpg][https://csirt.fr]][>img(auto,150px)[i/T-CSIRTFR.png][https://csirt.fr]]{{floatC{
@@bgcolor:#DDDDDD;color:#000091;▬▬▬▬▬▬▬▬▬▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬▬▬▬▬▬▬▬▬▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬▬▬▬▬▬▬▬▬▬@@
▬ Gestionnaire du site : @@color:#000091;''Olivier Caleff''@@ ▬
▬ Courriel : @@scolor:#000091;__''contact''__ à __''csirt''__ point __''fr''__@@ ▬
@@bgcolor:#DDDDDD;color:#000091;▬▬▬▬▬▬▬▬▬▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬▬▬▬▬▬▬▬▬▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬▬▬▬▬▬▬▬▬▬@@
▬ Motorisation[[ |BackOffice]]: @@color:#000091;v.__''''__@@ ▬
▬ TiddlyWiki [[Classic ⇗|https://classic.tiddlywiki.com/]] @@color:#000091;v.''<<version>>''^^ ([[O1V|https://github.com/TiddlyWiki/TiddlyWikiClassic]])^^ avec +++^[greffons] ^^<<tiddler [[BackOffice - TiddlyWiki]]>>^^===@@ ▬
▬ [[FontAwesome ⇗|https://fontawesome.com/]] @@color:#000091;v.''[[6.7.2|https://fontawesome.com/changelog]]''^^ (OCD)^^@@ ▬ Dates : __[[ISO 8601|https://www.iso.org/fr/iso-8601-date-and-time-format.html]]__ ▬
@@bgcolor:#DDDDDD;color:#000091;▬▬▬▬▬▬▬▬▬▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬▬▬▬▬▬▬▬▬▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬▬▬▬▬▬▬▬▬▬@@
Le site ne sera terminé que le ((18 janvier 2038(<<tiddler FooterDisclaimer>>))) 😉
+++[Concernant la protection des données sur ce site]>... <<tiddler [[Protection des Données]]>> ===
|ssTabl98|k
|!Sur les aspects protection des données, RGPD et similaires, et pour les éléments suivants | !la réponse est simple |
| • Identité et coordonnées du responsable de traitement •
• Identité et coordonnées du délégué à la protection des données •
• Catégories de données collectées •
• Finalités du traitement •
• Base juridique du traitement •
• Destinataires des données •
• Transferts de données en dehors de l'UE •
• Conservation des données •
• Exercice des droits •
• Soumission d'une réclamation auprès de l'autorité de contrôle •
• Cookies • | ''c'est sans objet''
car …
• aucune donnée n'est collectée sur le site •
• aucun cookie n'est utilisé •
^^(à part pour des aspects de présentation)^^
• aucun traitement de données n'est réalisé •
[img(50%,1px)[i/BluePixel.gif]]
Pour toute demande de précision, utilisez l'adresse
__rgpd__ à __csirt__ point __fr__
[img(50%,1px)[i/BluePixel.gif]] |
<<tabs Divers 'Introduction' '' 'Divers##Intro' 'Situation' '' [[Situation]] 'Taxonomies' '' [[Taxonomies]] 'NIS2' '' [[Juridique - NIS2 - ToC]] 'LOTL' 'LOTL' [[ThreatIntel - Living Off the Land]] 'Vocabulaire' '' [[Vocabulaire - Chiffrement]] 'Secteurs' '' [[Divers##Secteurs_ENISA]] 'Campus Cyber' 'Campus Cyber' [[Campus Cyber]] 'Outils' 'Outils' [[Outils]] 'Adressage IPv4' '' [[Adressage - IPv4]] 'Ports TCP/UDP' '' [[Ports TCP et UDP]] 'Téléphonie France' 'Plages téléphonique en France' [[Téléphonie France]] 'Liens Web' 'Divers liens vers des sites pertinents' [[Liens]] 'Acteurs Cyber' 'Liste des Acteurs de la Cyber en France' [[Acteurs Cyber]] 'Divers' 'À trier' [[Misc ...]]>>
/%
!Intro
Cette partie regroupe tous les articles non référencés par ailleurs sur ce site et qui sont en cours de rédaction.
Dans les onglets ci-contre, vous trouverez :
* sites pour un ''panorama de la menace'' +++[»]> <<tiddler [[Situation]]>> ===
* quelques éléments sur ''NIS2''
* des éléments sur les techniques et référentiels du "''Living Off the Land''" +++[»]> <<tiddler [[ThreatIntel - Living Off the Land]]>> ===
* quelques mots de ''vocabulaire'' à utiliser (ou pas) …
* une liste de ''secteurs de l'économie'' dans quelques pays en Europe (extension à d'autres continents prévue)
* une liste de quelques documents publiés par des groupes de travail du ''Campus Cyber''
* quelques ''outils'' dans le domaine de la cybersécurité ou du Cloud
* des informations sur les ''plages d'adresses IPv4'' +++[»]> <<tiddler [[Adressage - IPv4]]>> === à usage privé ou non
* des informations sur les ''ports TCP ou UDP'' +++[»]> <<tiddler [[Ports TCP et UDP]]>> === utilisés en environnements IT, OT et Cloud
* des informations sur les ''plages téléphoniques utilisées en France'' +++[»]> <<tiddler [[Téléphonie France]]>> === avec les numéros d'urgence, et les plages (officielle et officieuse …) à bloquer pour éviter le démarchage intempestif !
!Secteurs_ENISA
|#|#|Sector 🇬🇧|Secteur 🇫🇷|Sektor 🇩🇪/🇦🇹||Category 🇬🇧|Catégorie 🇫🇷|🇩🇪/🇦🇹|h
|1|1|Energy|Énergie|Energie|!|Electricity|Électricité|Elektrizität|
|1|2|Energy|Énergie|Energie|~|Oil|Combustibles|Erdöl|
|1|3|Energy|Énergie|Energie|~|Gas|Gaz|Erdgas|
|2|4|Transport|Transport|Verkehr|~|Air transport|Transport aérien|Luftverkehr|
|2|5|Transport|Transport|Verkehr|~|Rail transport|Transport ferrovi&egave;re|Schienenverkehr|
|2|6|Transport|Transport|Verkehr|~|Water transport|Transport maritime|Schifffahrt|
|2|7|Transport|Transport|Verkehr|~|Road transport|Transport routier|Straßenverkehr|
|3|8|Banking|Banque|Bankwesen|~|Banking|Banque|Bankwesen|
|44|9|Financial market infrastructures|Marchés financiers|Finanzmarktinfrastrukturen |~|Financial market infrastructures|Infrastructures de marchés financiers|Finanzmarktinfrastrukturen|
|5|10|Health sector|Santé|Gesundheitswesen|~|Health care settings (including hospitals and private clinics)|Santé (y compris les hopitaux et les cliniques privées|Einrichtungen der medizinischen Versorgung (einschließlich Krankenhäuser und Privatkliniken)|
|6|11|Drinking water supply and distribution||Trinkwasserlieferung und -versorgung|~|Drinking water supply and distribution||Trinkwasserlieferung und -versorgung|
|7|12|Digital Infrastructure||Digitale Infrastruktur|~|IXPs||IXPs|
|7|13|Digital Infrastructure||Digitale Infrastruktur|~|DNS service providers||DNS-Diensteanbieter|
|7|14|Digital Infrastructure||Digitale Infrastruktur|~|TLD name registries||DNS-Name-Registries|
|47|15|Public administration||Öffentliche Verwaltung|~|Public administration||Öffentliche Verwaltung|
|9|16|Other|Autre|Sonstige|~|Other|Autre|Sonstige|
|10|17|Unknown|Inconnu|Unbekannt|~|Unknown|Inconnu|Unbekannt|
| Source : ENISA/CSIRTs Network [[⇗|https://github.com/enisaeu/NIS-sectors/tree/master/formats]] |c
!end
%/
Tiddlers[[ |BackOffice - Tiddlers]]• CSIRTs : Pays[[ |BackOffice - CSIRTs]]& Types[[ |BackOffice - Types]]• CTI[[ |BackOffice - CTI]]• Codes[[ |BackOffice - HTML Codes]]HTML • Tags[[ |BackOffice - Tags]] • Font[[ |BackOffice - FontAwesome]]Awesome • Test[[ |BackOffice - CSV]]CSV •
<<forEachTiddler where 'tiddler.tags.containsAny(["systemConfig","transclusion"])' sortBy 'tiddler.title.toUpperCase()' descending write '"|"+tiddler.title+"|\<\<tiddler [["+tiddler.title+"::Version]]\>\>|\<\<tiddler [["+tiddler.title+"::Author]]\>\>|\n"' begin '"|[>img[i/favicon.ico]] Greffons / Plugins|c\n|Nom|Version (Date)|Auteurs / Contributeurs / Mainteneurs|h\n"' end '"|>|>|![img[i/favicon.ico]]|"' none '"//aucun//"'>>
[img[i/favicon.ico]]
@@color:#00FF00; • <html><i class='fa-brands fa-bluesky'></i></html> • <html><i class='fa-brands fa-font-awesome'></i></html> • <html><i class='fa-brands fa-github'></i></html> • <html><i class='fa-brands fa-linkedin'></i></html> • <html><i class='fa-brands fa-linkedin-in'></i></html> • <html><i class='fa-brands fa-mastodon'></i></html> • <html><i class='fa-brands fa-signal-messenger'></i></html> • <html><i class='fa-brands fa-slack'></i></html> @@
@@color:#0000FF; • <html><i class='fa-brands fa-debian'></i></html> • <html><i class='fa-brands fa-discord'></i></html> • <html><i class='fa-brands fa-firefox'></i></html> • <html><i class='fa-brands fa-medium'></i></html> • <html><i class='fa-brands fa-paypal'></i></html> • <html><i class='fa-brands fa-raspberry-pi'></i></html> • <html><i class='fa-brands fa-skype'></i></html> • <html><i class='fa-brands fa-wikipedia-w'></i></html> @@
@@color:#FF0000; • <html><i class='fa-brands fa-instagram'></i></html> • <html><i class='fa-brands fa-snapchat'></i></html> • <html><i class='fa-brands fa-soundcloud'></i></html> • <html><i class='fa-brands fa-telegram'></i></html> • <html><i class='fa-brands fa-tiktok'></i></html> • <html><i class='fa-brands fa-twitch'></i></html> • <html><i class='fa-brands fa-twitter'></i></html> • <html><i class='fa-brands fa-x-twitter'></i></html> • <html><i class='fa-brands fa-vk'></i></html> • <html><i class='fa-brands fa-weibo'></i></html> • <html><i class='fa-brands fa-whatsapp'></i></html> • <html><i class='fa-brands fa-pinterest'></i></html> • <html><i class='fa-brands fa-xing'></i></html> • <html><i class='fa-brands fa-yandex'></i></html> • <html><i class='fa-brands fa-yandex-international'></i></html> • <html><i class='fa-brands fa-youtube'></i></html> @@
[img[i/favicon.ico]]
• +++[Greffons »]... <<tiddler [[BackOffice - TiddlyWiki]]>> === • +++[Alphabetique »]... {{ss2col{<<forEachTiddler sortBy 'tiddler.title.toUpperCase()' script ' function getGroupCaption(tiddler) { return tiddler.title.substr(0,1).toUpperCase();} function getGroupTitle(tiddler, context) { if (!context.lastGroup || context.lastGroup != getGroupCaption(tiddler)) { context.lastGroup = getGroupCaption(tiddler); return "* {{{"+(context.lastGroup?context.lastGroup:"no tags")+"}}}\n";} else return "";} ' write 'getGroupTitle(tiddler, context)+"** [[" + tiddler.title+"]]\n"'>>}}} === • +++[All »]... <<list all>>=== • +++[Timeline »]... {{ss2col{<<timeline>>}}}=== • +++[Exclude »]... {{ss2col{<<allTags excludeLists>>}}}=== • +++[Missing »]... {{ss2col{<<list missing>>}}}=== • +++[Orphans »]... {{ss2col{<<list orphans>>}}}=== • +++[Shadowed »]... {{ss2col{<<list shadowed>>}}}===
• +++[all Tags »]... {{ss2col{<<allTags>>}}}=== • +++[Options»] <<options>>=== • +++[PluginManager »]... <<plugins>>===
+++[CTIsupplier_ »]... <<tiddler f_TabCTI with: 'CTIsupplier_'>> === •
<<tabs tMisc 'Couleurs' '' [[BackOffice - HTML Codes##Colors]] 'Caractères' '' [[BackOffice - HTML Codes##Char]] 'Liens' '' [[BackOffice - HTML Codes##Tags]] >>
/%
!Colors
|bgcolor:#000091;|[[🎨 ⇗|https://html-color.codes/]]|bgcolor:#E1000F;||bgcolor:#FF0000; |[[Red ⇗|https://html-color.codes/red]]|bgcolor:#800000; |[[Maroon ⇗|https://html-color.codes/maroon]]|bgcolor:#a52a2a; |[[Brown ⇗|https://html-color.codes/brown]]|bgcolor:#d2b48c; |[[Tan ⇗|https://html-color.codes/tan]]|bgcolor:#FFA500; |[[Orange ⇗|https://html-color.codes/orange]]|bgcolor:#FFDAB9; |[[Peach ⇗|https://html-color.codes/peach]]|bgcolor:#FFD700; |[[Gold ⇗|https://html-color.codes/gold]]|bgcolor:#FFFF00; |[[Yellow ⇗|https://html-color.codes/yellow]]|bgcolor:#00FF00; |[[Lime ⇗|https://html-color.codes/lime]]|bgcolor:#808000; |[[Olive ⇗|https://html-color.codes/olive]]|bgcolor:#008000; |[[Green ⇗|https://html-color.codes/green]]|
|~|[[img ⇗|https://html-color.codes/image-color]]|~|~|bgcolor:#008080; |[[Teal ⇗|https://html-color.codes/teal]]|bgcolor:#00FFFF; |[[Cyan ⇗|https://html-color.codes/cyan]]|bgcolor:#0000FF; |[[Blue ⇗|https://html-color.codes/blue]]|bgcolor:#000080; |[[Navy ⇗|https://html-color.codes/navy]]|bgcolor:#8F00FF; |[[Purple ⇗|https://html-color.codes/purple]]|bgcolor:#FF00FF; |[[Magenta ⇗|https://html-color.codes/magenta]]|bgcolor:#FF69B4; |[[Pink ⇗|https://html-color.codes/pink]]|bgcolor:#808080; |[[Grey ⇗|https://html-color.codes/grey]]|bgcolor:#C0C0C0; |[[Silver ⇗|https://html-color.codes/silver]]|bgcolor:#FFFFFF; |[[White ⇗|https://html-color.codes/white]]|bgcolor:#000000; |[[Black ⇗|https://html-color.codes/black]]|
!Tags
|[[W3 schools ⇗|https://www.w3schools.com/html/]]|[[W3 Docs ⇗|https://www.w3docs.com/]]|[[HTML Symbols ⇗|https://www.htmlsymbol.com/]]|
!Char
|Tel|x:1F57E|🕾|!|Hot|x:260E|☎|!|tel|x:2706|✆|!|Eml|x:1F582|🖂|
|tel|x:1F57F|🕿|!|tel|x:1F580|🖀|!|tel|x:1F4DE|📞 |
|OK|x:2713|✓|!|OKgras|x:2714|✔|!|ko|x:2717|✗|!|kogras|x:2718|✘|!|>|>|
|cross|x:2715|✕|!|crossgras|x:2716|✖|!|cross|x:274c|❌|
|Check|x:2611|☑|!||x:2612|☒|!||x:2613|☓|!||x:2614|☔|!||x:2615|☕|!|
|ArrowW1|x:2190|←|!|ArrowN1|x:2191|↑|!|ArrowS1|x:2192|→|!|ArrowE1|x:2193|↓|
|ArrowW2|x:21D0|⇐|!|ArrowN2|x:21D1|⇑|!|ArrowS2|x:21D2|⇒|!|ArrowE2|x:21D3|⇓|
|ArrowWE1|x:2194|↔|!|ArrowNS1|x:2195|↕|!|ArrowWE2|x:21D4|⇔|!|ArrowNS2|x:21D5|⇕|
|ArrowNW1|x:2196|↖|!|ArrowNE1|x:2197|↗|!|ArrowSE1|x:2198|↘|!|ArrowSW1|x:2199|↙|
|ArrowNW2|x:21D6|⇖|!|ArrowNE2|x:21D7|⇗|!|ArrowSE2|x:21D8|⇘|!|ArrowSW2|x:21D9|⇙|
|star|x:2729|✩|!|star|x:2730|✰|!|star|x:2731|✱|!|star|x:2732|✲|
|star|x:2733|✳|!|star|x:2734|✴|!|star|x:2735|✵|!|star|x:2736|✶|
!end
%/
!!Pays
@@font-size:60%;+++[FR_ »]... <<tiddler f_FuAllny with: 'All' 'FR_'>> === ^^(<<tiddler f_NbAllny with: 'Any' 'FR_'>>)^^ • +++[BE_ »]... <<tiddler f_FuAllny with: 'All' 'BE_'>> === ^^(<<tiddler f_NbAllny with: 'Any' 'BE_'>>)^^ • +++[MC_ »]... <<tiddler f_FuAllny with: 'All' 'MC_'>> === ^^(<<tiddler f_NbAllny with: 'Any' 'MC_'>>)^^ • +++[LU_ »]... <<tiddler f_FuAllny with: 'All' 'LU_'>> === ^^(<<tiddler f_NbAllny with: 'Any' 'LU_'>>)^^ • @@
!!Types
|!CSIRTs|_C| <<tiddler f_NbAllny with: 'All' '_C'>>|+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_C'>>}}}=== |
|!PSIRTs|_P| <<tiddler f_NbAllny with: 'All' '_P'>>|+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_P'>>}}}=== |
|!Liaisons|_L| <<tiddler f_NbAllny with: 'All' '_L'>>|+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_L'>>}}}=== |
|!Associations|_A| <<tiddler f_NbAllny with: 'All' '_A'>>|+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_A'>>}}}=== |
|!Fondations|_F| <<tiddler f_NbAllny with: 'All' '_F'>>|+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_F'>>}}}=== |
|!ISACs|_I| <<tiddler f_NbAllny with: 'All' '_I'>>|+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_I'>>}}}=== |
|!Masked|_M| <<tiddler f_NbAllny with: 'All' '_M'>>|+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_M'>>}}}=== |
|!Nat/Gov|_N| <<tiddler f_NbAllny with: 'All' '_N'>>|+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_N'>>}}}=== |
|!Communautés|_K| <<tiddler f_NbAllny with: 'All' '_K'>>|+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_K'>>}}}=== |
!!Associations Internationales
…
!!Tags
* _L ^^<<tiddler f_NbAllny with: 'All' '_L'>> +++[»] <<tiddler f_FuAllny with: 'Any' '_L'>>=== ^^
!!FR Regions CSV
<<tiddler f_CsvFR with: '33R_' 'CSIRTs régionaux' 'Any' 'fr' 'France' 'Région'>>
|>| !Aide pour le Moteur de recherche / Search Engine Help |
|[>img[i/Francais.gif]]''Aide en français''
Cliquer ⇒ +++*@[ici|Aide en français]>... <<tiddler [[Recherche - AideFR]]>> === ⇐ |[>img[i/Anglais.gif]]''Help in English''
Click ⇒ +++*@[here|Help in English]>... <<tiddler [[Recherche - HelpEN]]>> === ⇐ |
!Aide pour utiliser le moteur de recherche intégré
|!Recherches |!Commandes |!Exemples |
|Dans tous les articles|Entrer @@{{{le terme recherché}}}@@|@@{{{SIM3}}}@@|
|Uniquement dans les titres|Les précéder d'un @@{{{!}}}@@|@@{{{!TRANSITS}}}@@|
|Uniquement dans le corps d'articles|Les précéder d'un @@{{{%}}}@@|@@{{{%CSIRT}}}@@|
|Plusieurs termes obligatoirement|Les séparer par @@{{{&&}}}@@ ou @@{{{and}}}@@|@@{{{CSIRT && CERT}}}@@ ou @@{{{CSIRT}}} __''{{{and}}}''__ {{{CERT}}}@@|
|Au moins un parmi plusieurs termes|Les séparer par un espace ou par @@{{{or}}}@@|@@{{{CSIRT}}} __''{{{or}}}''__ {{{CERT}}}@@|
|Exclure un terme|Le précéder par @@{{{-}}}@@ ou par @@{{{not}}}@@|@@{{{-CERT}}}@@ ou @@{{{not CERT}}}@@|
|Un terme avec un tiret (@@{{{-}}}@@)|Entourer avec des guillements (@@{{{"}}}@@)|@@{{{"CERT-FR"}}}@@|
||>|^^Précision : @@CERT-FR@@ donne tous les articles avec @@CERT@@ mais sans @@FR@@, @@Fr@@, @@fR@@, ou @@fr@@
alors que @@"CERT-FR"@@ donne tous les articles avec @@CERT-FR@@, @@CERT-Fr@@ , @@CERT-fr@@ …^^|
!How to use the embedded search engine
|!Searches |!Commands |!Examples |
|In all articles|Enter the @@{{{text to search}}}@@|@@{{{SIM3}}}@@|
|Search titles only|Start word(s) with @@{{{!}}}@@|@@{{{!TRANSITS}}}@@|
|Search contents/text only|Start word(s) with @@{{{%}}}@@|@@{{{%CSIRT}}}@@|
|All words must exist|Separate words with @@{{{&&}}}@@ or @@{{{and}}}@@|@@{{{CSIRT && CERT}}}@@ ou @@{{{CSIRT}}} __''{{{and}}}''__ {{{CERT}}}@@|
|At least one word must exist|Separate words with a space or @@{{{or}}}@@|@@{{{CSIRT}}} __''{{{or}}}''__ {{{CERT}}}@@|
|A word must not exist|Start word with @@{{{-}}}@@ or by @@{{{not }}}@@|@@{{{-CERT}}}@@ or @@{{{not CERT}}}@@|
|A word with a dash (@@{{{-}}}@@)|Put the word into quotes (@@{{{"}}}@@)|@@{{{"CERT-FR"}}}@@|
||>|^^Details: Searching for @@CERT-FR@@ will provide all articles with @@CERT@@ but neither @@FR@@, @@Fr@@, @@fR@@, nor @@fr@@
but @@"CERT-FR"@@ will provide all articles with @@CERT-FR@@, @@CERT-Fr@@ , @@CERT-fr@@ …^^|
|^^Calendrier des événements (<html><i class='fa fa-people-roof'</i> | <i class='fa fa-handshake'</i></html>) et formations (<html><i class='fa fa-graduation-cap'</i> | <i class='fa fa-people-line'</i></html>)^^ |^^→ [[Annuaire des CSIRTs|Annuaire]] ←^^|^^Prochains avis^^ |h
|@@font-size:90%;<<tiddler f_Calend with: 'Événements et Formations en 2025' 'Event_P_'>><<tiddler f_Calend with: 'Événements et Formations en 2026' 'Event_Q_'>>@@|@@font-size:90%;<<tiddler [[CSIRTs - Présentation - Pays]]>>
<<tiddler [[CSIRTs - Présentation - Groupes]]>>@@|@@font-size:80%;<<showReminders leadtime:92 format:"• TITLE ^^DIFF^^" tag:'PatchDay_'>>@@▬▬▬▬▬▬▬
@@color:#000091;^^''Derniers articles mis à jour''^^@@@@font-size:70%;<<timeline>>@@▬▬▬▬▬▬▬▬▬▬▬▬▬▬|
<<top>>
|>| @@color:#E1000F;<html><i class='fa fa-graduation-cap'</i></html> ''[[Formations|Formations TRANSITS et SIM3]]''@@ : Dates, Ressources, Liens… |
|[[⇒ TRANSITS|Formations TRANSITS]]|//Description des formations TRANSITS (I et II), Audience, Détails//|
|[[⇒ SIM3|Formations SIM3]]|//Description des formations SIM3 (Autoévaluation, Auditeur Certifié//|
|[[⇒ Calendrier|Formations - Calendrier]]|//Dates des prochaines formations// |
|▬▬▬▬▬▬▬▬▬▬|▬▬▬▬▬▬▬▬▬▬|
| [[Archives|Events - Archives]]|//Archive des événements, conférences et formations référencées//|
@@font-size:90%;<<tiddler f_Calend with: 'Formations en 2025' 'Train_P_'>><<tiddler f_Calend with: 'Événements et Formations en 2026' 'Train_Q_'>>
|!Liste (non exhaustive) de <<tiddler f_NbAllny with: 'Any' 'Train_0C_d0n3_'>> formations TRANSITS et SIM3 entre 2014 et 2024 |!Liste (non exhaustive) de <<tiddler f_NbAllny with: 'Any' 'Conf_0_d0n3_","Conf_O_d0n3_'>> Conférences entre 2000 et 2024 |
|@@font-size:90%;<<tiddler f_Calend with: '!!!Délivées par [[Olivier Caleff|CV Olivier Caleff]]' 'Train_d0n3_'>>@@ |@@font-size:90%;<<tiddler f_Calend with: '!!!Historique non exhaustif' 'Event_0_d0n3_","Event_E_d0n3_","Event_F_d0n3_","Event_G_d0n3_","Event_H_d0n3_","Event_I_d0n3_","Event_J_d0n3_","Event_K_d0n3_","Event_L_d0n3_","Event_M_d0n3_","Event__d0n3_","Event_O_d0n3_'>>@@ |
__29.12.2024__
__^^InterCERT France^^__
1^^er^^ 'Rapport d’incidentologie 2024'
^^→ [[Annonce|https://www.intercert-france.fr/rapport-dincidentologie-2024/]] et [[rapport|https://www.intercert-france.fr/wp-content/uploads/2024/12/intercert-france-rapport-dincidentologie-depotdeplainte.pdf]]^^
--QOTD--
__12.02.2024__
__^^CERT-IST^^__
^^'Bilan Cert-IST des failles et attaques de 2023'^^
^^→ [[Rapport ⇗|https://www.cert-ist.com/public/fr/SO_detail?code=bilan2023&ref=icf]]^^
--QOTD--
<<showReminders leadtime:20 format:"^^TITLE //DIFF//^^" tag:"PatchTuesday_" >>
--QOTD--
^^@@color:#000091;<html><i class='fa fa-users'</i></html>@@ ^^''Formation SIM3''
__12.03.2025__
► [[Détails|S3FR-Next]]
1 jour en français, en présentiel et distanciel^^
[img(140px,auto)[i/T-CSIRTFR.png][https://csirt.fr#S3FR-Next]]^^
--QOTD--
^^@@color:#000091;<html><i class='fa fa-graduation-cap'</i></html>@@ ^^''Formation TRANSITS-I''
__18 au 20.03.2025__
► [[Détails|T1FR-Next]]
3 jours en français, en présentiel et distanciel
[img(140px,auto)[i/T-CSIRTFR.png][https://csirt.fr#T1FR-Next]]^^
<<tiddler [[Formations - Calendrier]]>>
<html><i class='fa fa-lock'</i></html>La veille quotidienne n'est accessible que sur la partie privée du site
!!Podcasts quotidiens
|Nom|Auteur|Site|Épisodes|RSS|Langue|Début|Commentaires|h
|RadioCSIRT|Marc-Frédéric Gomez|https://www.radiocsirt.org/ |[[⇗|https://www.radiocsirt.org/RadioCSIRT/radio/]]|[[⇗|https://www.radiocsirt.org/feed/]]|Français|Août 2024|''Du fond'' et des actualités par l'un des meilleurs spécialistes français|
|SANS Stormcast|Johannes B.Ullrich|https://isc.sans.edu/ |[[⇗|https://isc.sans.edu/podcast.html]]|[[⇗|https://isc.sans.edu/rssfeed.xml]]|Anglais|2003|''La référence depuis plus de 20 ans'', des faits, des actualités, des attaques et des vulnérabilités|
!!Podcasts hebdomadaires
Plusieurs podcasts <html><i class='fa fa-podcast'</i></html> ''NoLimitSecu'' [[⇗|https://www.nolimitsecu.fr/]] traitent des sujets liés aux CSIRTs/PSIRTs.
|Dates |Numéros |Titres |Participants |Podcasts ||h
|>|>|>|>| | [img(150px,auto)[iCSIRT/NolimitSecu.png]] |
|2023.07.23 | 421 |''[[Retex incident de sécurité (CHU Brest) ⇗|https://www.nolimitsecu.fr/retex-incident-de-securite/]]'' |[[Jean-Sylvain Chavanne ⇗|https://www.linkedin.com/in/jean-sylvain-chavanne/]] |[[mp3 ⇗|https://www.nolimitsecu.fr/wp-content/uploads/NoLimitSecu-421-RETEX-Incident-Securite-CHU-Brest.mp3]] |~|
|2023.05.08 | 410 |''[[Le FIRST ⇗|https://www.nolimitsecu.fr/first/]]'' |[[Olivier Caleff ⇗|https://fr.linkedin.com/in/caleff]] |[[mp3 ⇗|https://www.nolimitsecu.fr/wp-content/uploads/NoLimitSecu-410-FIRST.mp3]] |~|
|2023.02.27 | 401 |''[[SIM3, la maturité des CSIRTs/CERTs ⇗|https://www.nolimitsecu.fr/sim3/]]'' +++[liens] • le site de l'[[OpenCSIRT Foundation (OCF) ⇗|https://opencsirt.org/]]
• le [[référentiel SIM3 ⇗|https://opencsirt.org/csirt-maturity/sim3-and-references/]] en PDF : [[version 1 ⇗|https://opencsirt.org/wp-content/uploads/2019/12/SIM3-mkXVIIIc.pdf]], et en [[version 2 intermédiaire ⇗|https://opencsirt.org/wp-content/uploads/2023/11/SIM3_v2_interim_standard.pdf]]
• outil d'auto-évaluation SIM3 de l'OCF en [[version 2 intermédiaire ⇗|https://sim3-check.opencsirt.org/]])
• outil d'auto-évaluation SIM3 de l'ENISA ([[version 1 ⇗|https://www.enisa.europa.eu/topics/incident-response/csirt-capabilities/csirt-maturity/csirt-survey]] et [[version 2 intermédiaire ⇗| https://www.enisa.europa.eu/topics/incident-response/csirt-capabilities/csirt-maturity/sim3-v2i]]) pour les CSIRTs nationaux ===|[[Olivier Caleff ⇗|https://fr.linkedin.com/in/caleff]], [[Marc-Frédéric Gomez ⇗|https://fr.linkedin.com/in/marcfredericgomez]] |[[mp3 ⇗|https://www.nolimitsecu.fr/wp-content/uploads/NoLimitSecu-401-SIM3.mp3]] |~|
|2023.01.23 | 396 |''[[TLP et PAP ⇗|https://www.nolimitsecu.fr/tlp-et-pap/]]'' +++[liens] • La politique de marquage du [[CERT-FR ⇗|https://www.cert.ssi.gouv.fr/csirt/politique-partage/]]
• La page [[TLP ⇗|https://www.first.org/tlp/]] du FIRST
• La page [[IEP ⇗|https://www.first.org/iep/]] du FIRST === |[[Claire Anderson ⇗|https://www.linkedin.com/in/claire-anderson-15353a4/]], [[Matthieu Bontrond ⇗|https://www.linkedin.com/in/bontrond/]], [[Alexandre Dulaunoy ⇗|https://www.linkedin.com/in/adulau/]]|[[mp3 ⇗|https://www.nolimitsecu.fr/wp-content/uploads/NoLimitSecu-396-TPL-PAP.mp3]] |~|
|2022.12.04 | 391 |''[[L'association InterCERT France ⇗|https://www.nolimitsecu.fr/intercert-france/]]'' |[[Frédéric Le Bastard ⇗|https://www.linkedin.com/in/fredericlebastard/]] et [[Étienne Baudin ⇗|https://www.linkedin.com/in/%C3%A9tienne-baudin-b6b60142/]] |[[mp3 ⇗|https://www.nolimitsecu.fr/wp-content/uploads/NoLimitSecu-391-InterCERT-France.mp3]] |~|
|2022.07.10 | 375 |''[[Cyber Résilience ⇗|https://www.nolimitsecu.fr/cyber-resilience/]]'' +++[liens] • ResearchGate : [[Cyber Resilience – Fundamentals for a Definition| https://www.researchgate.net/publication/283102782_Cyber_Resilience_-_Fundamentals_for_a_Definition]]
• SEI CMU [[CERT–RMM : CERT Resilience Management Model ⇗|https://www.sei.cmu.edu/search.cfm?q=Resilience+Management+Model]]
• US-CERT [[CRR : Cyber Resilience Review ⇗|https://www.us-cert.gov/ccubedvp/assessments]]
• MITRE : CREF (Cyber Resiliency Engineering Framework) [[Design Principles ⇗|https://www.mitre.org/publications/technical-papers/cyber-resiliency-design-principles]]
• MITRE : CREF (Cyber Resiliency Engineering Framework) [[Engineering Framework ⇗|https://www.mitre.org/publications/technical-papers/cyber-resiliency-engineering-framework]]
• NIST : [[Resilience ⇗|https://www.nist.gov/resilience]] et [[Security Engineering ⇗|https://csrc.nist.gov/Topics/Security-and-Privacy/systems-security-engineering/trustworthiness/resilience]]
• Global Risk Institute : [[The Cyber-Resilience of Financial Institutions: A preliminary working paper on significance and applicability of digital resilience ⇗|https://globalriskinstitute.org/publications/the-cyber-resilience-of-financial-institutions-a-preliminary-working-paper-on-significance-and-applicability-of-digital-resilience/]]
• Global Risk Institute : [[Withstanding Cyber-Attacks: Cyber-Resilience Practices in the Financial Sector ⇗|https://globalriskinstitute.org/publications/the-cyber-resilience-of-financial-institutions-a-preliminary-working-paper-on-significance-and-applicability-of-digital-resilience/]] === |[[Olivier Caleff ⇗|https://fr.linkedin.com/in/caleff]], [[Benoit Dupont ⇗|https://www.linkedin.com/in/benoit-dupont-9369702/]] |[[mp3 ⇗|https://www.nolimitsecu.fr/wp-content/uploads/NoLimitSecu-375-cyber-resilience.mp3]] |~|
|2022.07.03 | 374 |''[[Les ISACs ⇗|https://www.nolimitsecu.fr/les-isacs/]]'' +++[liens] • Texte fondateur [[Presidential Decision Directive 63: Protecting America's Critical Infrastructures (Fact Sheet) ⇗|https://www.hsdl.org/?abstract&did=3544]]
• Groupement des ISACs : [[National Council of ISACs ⇗|https://www.nationalisacs.org/]] et la [[liste des membres ⇗|https://www.nationalisacs.org/member-isacs-3]] du Groupement des ISACs
• ENISA : Annonce [[ISAC in a BOX Toolkit ⇗|https://www.enisa.europa.eu/news/enisa-news/isac-in-a-box]], la [[boite à outils ⇗|https://www.enisa.europa.eu/topics/national-cyber-security-strategies/information-sharing/isacs-toolkit/view]] === |[[Olivier Caleff ⇗|https://fr.linkedin.com/in/caleff]] |[[mp3 ⇗|https://www.nolimitsecu.fr/wp-content/uploads/NoLimitSecu-374-Les-ISACs.mp3]] |~|
|2021.11.21 | 343 |''[[MITRE ATT&CK ⇗|https://www.nolimitsecu.fr/mitre-attck/]]'' |[[Alexandre Dulaunoy ⇗|https://www.linkedin.com/in/adulau/]] |[[mp3 ⇗|https://www.nolimitsecu.fr/wp-content/uploads/NoLimitSecu-343-MITRE-ATTACK.mp3]] |~|
|2016.03.28||''[[Les SOC ⇗|https://www.nolimitsecu.fr/les-soc/]]'' |[[Cyrille Barthelemy ⇗|https://www.linkedin.com/in/cyrillebarthelemy]], Fabien Pouget, [[Vladimir Kolla ⇗|https://www.linkedin.com/in/vlad-k-3517a064]]|[[mp3 ⇗|https://www.nolimitsecu.fr/wp-content/uploads/NoLimitSecu-Les-SOC.mp3]] |~|
|2015.12.20 ||''[[CERT-CSIRT ⇗|https://www.nolimitsecu.fr/cert-csirt/]]'' |[[Sébastien Rummelhardt ⇗|https://www.linkedin.com/in/sebrummelhardt]], [[Thomas Chopitea ⇗|https://www.linkedin.com/in/thomas-chopitea/]], [[Thomas Gayet ⇗|https://www.linkedin.com/in/thomasgayet/]] |[[mp3 ⇗|https://www.nolimitsecu.fr/wp-content/uploads/NoLimitSecu-CERT-CSIRT.mp3]] |~|
!!Autres Podcasts
|Source|Date|Titres|Participants|Audio/Vidéo |h
|Carnegie Mellon University / Software Engineering Institute|2024.06.26|Developing a Global Network of CSIRTs|Tracy Bills, James Lord|[[CMU SEI|https://www.youtube.com/watch?v=nUIKnTtv4Lg]] / [[YouTube|https://insights.sei.cmu.edu/library/developing-a-global-network-of-computer-security-incident-response-teams-csirts/]]|
@@font-size:90%;
|Prochaines Conférences|Prochaines Formations|h
|<<tiddler f_Calend with: 'Conférences en 2024, 2025 et 2026' 'Conf_O_","Conf_P_","Conf_Q_'>>|<<tiddler f_Calend with: 'Formations en 2024, 2025 et 2026' 'Train_O_","Train_P_","Train_Q_'>>|
@@
<html><i class='fa fa-lock'</i></html> Uniquement sur la partie privée du site /%
!@@color:#000091;<html><i class='fa fa-laptop-medical fa-2x'</i></html> • @@Sites à consulter
Pour être informé au plus vite lors de la publicaton de correctifs de sécurité :
* Mise à jour de sécurité
** [[Bleeping Computer ⇗|https://www.bleepingcomputer.com/tag/security-update/]]
* Microsoft : Patch Tuesday
** [[SANS Diary ⇗|https://isc.sans.edu/diaryarchive.html]]
** [[Morphus Labs Patch Tuesday Board ⇗|https://patchtuesdaydashboard.com/]]
** [[Cyber Security Watch Patch Watch ⇗|https://cybersecurityworks.com/patchwatch/]]
** [[Bleeping Computer Patch Tuesday ⇗|https://www.bleepingcomputer.com/tag/patch-tuesday/]]
* Adobe
** [[Bleeping Computer ⇗|https://www.bleepingcomputer.com/tag/adobe/]]
%/
|<<tiddler jsTdB with: 'Agenda'>>|+++[tous ..]> .. <<showReminders leadtime:365 format:'|^^DIFF^^|TITLE ~~ANNIVERSARY~~|'>>=== |
<<showReminders leadtime:128 format:'|^^DIFF^^|TITLE ~~ANNIVERSARY~~|'>>
/* Hebdomadaire */
<<reminder offsetdayofweek:3 title:"Chrome (h.)">>
/* Mensuel */
<<reminder day:8 offsetdayofweek:2 title:"''Patch Tuesday''">>
<<reminder day:8 offsetdayofweek:2 title:"''Microsoft''">>
<<reminder day:8 offsetdayofweek:2 title:"''Adobe''">>
<<reminder day:8 offsetdayofweek:2 title:"''SAP''">>
<<reminder day:8 offsetdayofweek:2 title:"''Siemens''">>
<<reminder day:8 offsetdayofweek:2 title:"''Schneider Electric''">>
<<reminder day:1 title:"''Android''">>
/* Trimestriel */
<<reminder month:2 day:1 offsetdayofweek:2 title:"''Splunk'' (t.)">>
<<reminder month:5 day:1 offsetdayofweek:2 title:"''Splunk'' (t.)">>
<<reminder month:8 day:1 offsetdayofweek:2 title:"''Splunk'' (t.)">>
<<reminder month:11 day:1 offsetdayofweek:2 title:"''Splunk'' (t.)">>
<<reminder month:2 day:3 offsetdayofweek:3 title:"''F5'' (t.)">>
<<reminder month:5 day:3 offsetdayofweek:3 title:"''F5'' (t.)">>
<<reminder month:8 day:3 offsetdayofweek:3 title:"''F5'' (t.)">>
<<reminder month:11 day:3 offsetdayofweek:3 title:"''F5'' (t.)">>
<<reminder month:2 day:8 offsetdayofweek:3 title:"''Juniper'' (t.)">>
<<reminder month:5 day:8 offsetdayofweek:3 title:"''Juniper'' (t.)">>
<<reminder month:8 day:8 offsetdayofweek:3 title:"''Juniper'' (t.)">>
<<reminder month:11 day:8 offsetdayofweek:3 title:"''Juniper'' (t.)">>
<<reminder month:1 day:15 offsetdayofweek:2 title:"''Oracle'' (t.)">>
<<reminder month:4 day:15 offsetdayofweek:2 title:"''Oracle'' (t.)">>
<<reminder month:7 day:15 offsetdayofweek:2 title:"''Oracle'' (t.)">>
<<reminder month:10 day:15 offsetdayofweek:2 title:"''Oracle'' (t.)">>
/* Semestriel */
<<reminder month:4 day:28 offsetdayofweek:4 title:"''MITRE ATT&CK'' (s.)">>
<<reminder month:10 day:28 offsetdayofweek:4 title:"''MITRE ATT&CK'' (s.)">>
<<reminder month:2 day:22 offsetdayofweek:3 title:"''Cisco FXOS/NX-OS'' (s.)">>
<<reminder month:8 day:22 offsetdayofweek:3 title:"''Cisco FXOS/NX-OS'' (s.)">>
<<reminder month:3 day:22 offsetdayofweek:3 title:"''Cisco IOS'' (s.)">>
<<reminder month:9 day:22 offsetdayofweek:3 title:"''Cisco IOS'' (s.)">>
<<reminder month:4 day:8 offsetdayofweek:3 title:"''Cisco ASA/FMC/FTD'' (s.)">>
<<reminder month:10 day:8 offsetdayofweek:3 title:"''Cisco ASA/FMC/FTD'' (s.)">>
<<reminder month:4 day:22 offsetdayofweek:2 title:"''MITRE ATT&CK'' (s.)">>
!!Olivier CALEFF
[>img(150px,auto)[i/OlivierCaleff.jpg]]Olivier CALEFF travaille dans le domaine de la sécurité informatique depuis 1992, et traite plus spécifiquement des problèmatiques de veille et de traitement des incidents de sécurité depuis la fin des années 90.
Il est aussi un spécialiste dans le domaine de la cyber-résilience.
Il anime des sessions de formation TRANSITS et SIM3 en français et anglais depuis 2015 et en français depuis 2020 avec plus de 600 personnes formées.
!!Résumé de carrière
* En 1986, il débute au sein de la société ''Dassault électronique'' comme ingénieur réseau.
* En 1992, il et l'un des co-fondateurs de la société de services ''APOGEE Communications''+++^*[»] [img(300px,auto)[i/APOGEE-Communications.png]] ===, et il y lance l'activité sécurité en 1994.
* En 1997, il participe au lancement de l'activité de Veille Sécurité ''APOGEE SecWatch'' et de réponse aux incidents.
* Après le rachat de la société par le groupe COLT puis par le groupe Devoteam, l'activité devient le ''CERT Devoteam'' et rejoint l'''InterCERT-FR''+++^*[»] Voir https://www.cert.ssi.gouv.fr/csirt/intercert-fr/ maintenant https://www.intercert-france.fr/ ===.
* Il intervient auprès de clients français pour la mise en oeuvre d'équipes CSIRT de réponse aux incidents de sécurité et de veille.
* En 2013, il rejoint l'''ANSSI''+++^*[»] Voir https://www.ssi.gouv.fr/ === en tant que responsable des relations internationales du ''CERT-FR''+++^*[»] Voir https://cert.ssi.gouv.fr/ ===.
* En 2018, il rejoint le groupe ''SANOFI''+++^*[»] Voir https://www.sanofi.com/ === comme responsable groupe "Cyber Résilience" au sein de l'équipe Cyber Sécurité et intervient notamment sur l'organisation d'exercices cyber, de gestion d'incidents et de gestion de crise.
* Depuis 2022, Olivier Caleff est responsable ''"Cyber Résilience et Gestion de Crises"'' et associé au sein de la société ''[[ERIUM|https://www.ERIUM.fr/]]''+++^*[»] Voir https://www.ERIUM.fr/ === .
Il est membre actif de plusieurs communautés de CSIRTs (//Liaison// à l'''InterCERT France'', //Associate// à la ''TF-CSIRT'', //Liaison// et au Conseil d'Administration du ''FIRST'' .. ), est formateur ''TRANSITS'', et formateur et auditeur ''SIM3''.
Plus d'informations sont disponibles sur son profil ''LinkedIN''+++^*[»] Voir https://www.linkedin.com/in/caleff/ ===.
!Compléments
Plus de détails sont disponibles sur le cursus et les activités d'Olivier CALEFF. Elles couvrent :
* Les activités liées aux formations : TRANSITS, SIM3, en Mastère Spécialisé Cyber Sécurité …
* Les activités liées aux communautés de CSIRTs et associations : FIRST, TF-CSIRT, InterCERT France, OpenCSIRT Foundation …
* Les activités liées aux communautés de CISO : CESIN, ECSO …
* Les activités liées à la cyber sécurité en Europe : ENISA, Commission Européenne …
* Autres activités : évaluateur Technique COFRAC, Chapitre français de la Cloud Security Alliance …
* Certifications en (Cyber) Sécurité
+++[Plus de détails »]>... <<tiddler [[CV Olivier Caleff - Détails]]>>===
|<<showtoc>>|
!Formations
!!!Formations SIM3
* En septembre 2018, suivi de la formation SIM3 puis passage avec succès de l'examen pour devenir ''SIM3 Certified Auditor''.
* En juin 2019 et en juin 2022, il coanime des demi-journées de formations sur SIM3 en marge des conférences annuelles du FIRST (respectivement, à Edimbourg et à Dublin).
* En juillet 2022, coanimation d'une session de formation SIM3 de 3 jours en anglais (Dublin, Irlande)
* En septembre 2022, animation d'une session de formation SIM3 de 3 jours en français (Paris, France)
* ''En avril 2023, coanimation d'une session de formation SIM3 de 1 jour en français (Puteaux, France)''
!!!Formations TRANSITS
* En 2010, suivi de la formation ''TRANSITS-I''+++^*[»] Voir https://tf-csirt.org/transits/ ===.
* En 2014, suivi de la formation ''Train the Trainer'' afin de devenir formateur TRANSITS.
* En 2015, il commence à délivrer des formations ''TRANSITS-I''+++^*[»] Voir https://tf-csirt.org/transits/transits-events/transits-i/ === en anglais notamment pour l'''AfricaCERT''+++^*[»] Voir https://www.africacert.org/ ===, et rédige une nouvelle version du module "Opérationnel".
* Entre 2018 et 2022, il est l'un des deux ''Head Trainer''+++^*[»] Voir https://opencsirt.org/our-projects/transits-head-trainer/ === avec ''Don Stikvoort''+++^*[»] Voir https://www.first.org/hof/inductees#don-stikvoort === pour les formations ''TRANSITS-I''+++^*[»] Voir https://www.geant.org/Services/Trust_identity_and_security/Pages/TRANSITS-I.aspx === et ''TRANSITS-II''+++^*[»] Voir https://www.geant.org/Services/Trust_identity_and_security/Pages/TRANSI7S_II.aspx === dans le cadre de l'''OpenCSIRT Foundation''+++^*[»] Voir https://opencsirt.org/ ===.
* A ce titre, il enseigne tous les modules ''TRANSITS-I''+++^*[»] Voir https://tf-csirt.org/transits/transits-events/transits-i/ ===, ainsi que les modules "Forensique" et "Communication" de ''TRANSITS-II''+++^*[»] Voir https://tf-csirt.org/transits/transits-events/transits-ii/ ===.
TRANSITS est le sigle de "TRAining of Network Security Incident Teams Staff"+++^*[»] Voir https://tf-csirt.org/transits/ ===
* ''À fin 2024, il a animé ou coanimé plus d'une vingtaine de sessions TRANSITS-I (plus de 20 TRANSITS-I en français et en anglais, 4 TRANSITS-II en anglais)''
!Associations de CSIRTs
!!!FIRST
FIRST ⇗ https://first.org/
* En 2013, il rejoint le FIRST en tant que représentant du CERTA (devenu ''CERT-FR'' en 2014).
* Il y réalise 8 évaluations ''Site Visits'' de CSIRT candidats à l'entrée au FIRST.
* Depuis 2018, il participe au FIRST //ad personam// comme ''FIRST Liaison''+++^*[»] Voir https://www.trusted-introducer.org/processes/associates.html ===.
* Jusqu'en 2022, il est coanimateur des groupes de travail (SIG) : ''Membership Committee''+++^*[»] Voir https://www.first.org/about/organization/committees ===, ''Malware Analysis''+++^*[»] Voir https://www.first.org/global/sigs/malware/ ===.
* Il est coanimateur du groupe de travail (SIG) ''Cyber Exercises''.
* Il participe activement à deux autres groupes de travail : ''CSIRT Framework Development''+++^*[»] Voir https://www.first.org/global/sigs/csirt/ === qui a notamment publié le nouveau ''Computer Security Incident Response Team (CSIRT) Services Framework''+++^*[»] Voir https://www.first.org/standards/frameworks/csirts/csirt_services_framework_v2.1 === et ''Traffic Light protocol (TLP)''+++^*[»] Voir https://www.first.org/global/sigs/tlp/ ===.
* ''Il a été élu en Juin 2022 au Conseil d'Administration du FIRST (//FIRST Board of Directors//) pour un mandat de 2 ans, puis ré-élu en 2024 pour un deuxième mandat.''
!!!TF-CSIRT et Trusted Introducer
TF-CSIRT ⇗ https://tf-csirt.org et Trusted Introducer ⇗ https://www.trusted-introducer.org/
* En 2007, il rejoint la TF-CSIRT en tant que représentant du CERT Devoteam.
* En 2013, il rejoint la TF-CSIRT en tant que représentant du CERTA (renommé en CERT-FR en 2014).
* Depuis 2018, il participe à la TF-CSIRT //ad personam// comme ''Associate''+++^*[»] Voir https://www.trusted-introducer.org/processes/associates.html ===.
* Il a participé au groupe de travail "''Future of TF-CSIRT Future of TF-CSIRT Working Group''".
* ''Depuis 2021, il réalise des audit SIM3 pour la certification d'équipes CSIRT.''
!!!InterCERT France
InterCERT France : +++^*[détails »] https://www.intercert-france.fr/ ===
* En 2005, il rejoint l'interCERT-FR encore embryonnaire en tant que co-représentant APOGEE Communications, puis du CERT Devoteam
* Entre 2013 et 2018, il coanime l'InterCERT-FR en tant que représentant du CERTA puis du CERT-FR, participe à sa structuration et organise les premières élections.
* ''En 2022, il rejoint l'InterCERT France en tant que //Membre Liaison//.''
!Associations de RSSI
!!!CESIN
CESIN : +++^*[détails »] Club des Experts de la Sécurité de l'Information et du Numérique - https://cesin.fr/ ===
* Depuis 2018, il est membre du ''CESIN''.
* Il coanime un groupe de travail sur les aspects de gestion de crise cyber, ainsi que le LAB CESIN "''Vulnérabilités et Incidents''".
* Mentor depuis 2020
* ''Il publie une veille quotidienne en anglais sur la cyber sécurité depuis septembre 2021.''
* ''Il anime une session mensuelle d'une heure sur l'état de la menace cybersécurité -- actualités, vulnérabilités, groupes d'attaquants, documents significatifs… -- depuis février 2022.''
!!!ECSO
ECSO : +++^*[détails »] European Cyber Security Organisation - https://ecs-org.eu/ ===
* Depuis 2022, il est membre de ''ECSO''.
* Il est l'un des "ECSO Ambassadors" pour la France et en charge d'un groupe de travail sur la Cyber Threat Intelligence.
* ''Il publie sa veille quotidienne en anglais sur la cyber sécurité -- déjà diffusée au CESIN -- depuis février 2022.''
* ''Il anime une session mensuelle d'une heure sur l'état de la menace cybersécurité -- actualités, vulnérabilités, groupes d'attaquants, documents significatifs… -- depuis avril 2022.''
!Autres associations ou Fondations
!!!OpenCSIRT Foundation
OpenCSIRT Foundation : +++^*[détails »] https://opencsirt.org/ ===
* Depuis 2014, il travaille avec le modèle de maturité ''SIM3''+++^*[»] Voir https://opencsirt.org/csirt-maturity/sim3-and-references/ ===.
* Depuis 2018, il est certifié ''SIM3 Auditor''+++^*[»] Voir http://opencsirt.org/auditors-france/ ===.
* Depuis 2022, il est certifié ''SIM3 Trainer''+++^*[»] Voir https://opencsirt.org/csirt-maturity/sim3-certified-auditor-training/ ===.
* ''Il participe au groupe de travail sur l'évolution et l'extension de SIM3.''
!Cloud Security Alliance
Cloud Security Alliance : +++^*[détails »] Voir https://cloudsecurityalliance.org/ ===
* En 2010, il a co-fondé et anime le ''Chapitre français de la Cloud Security Alliance'' +++^*[détails »] Voir http://cloudsecurityalliance.fr ===.
!Entités officielles
!!!ENISA
ENISA : +++^*[détails »] European Network and Information Security Agency - https://enisa.europa.eu/ ===
* Depuis 2014, il participe à la rédaction de documents de l'ENISA notamment sur l'''évaluation de la maturité des CSIRT basé sur SIM3''+++^*[»] Voir https://www.enisa.europa.eu/publications/study-on-csirt-maturity-evaluation-process === et ''Good Practice Guide on Training Methodologies''+++^*[»] Voir https://www.enisa.europa.eu/publications/good-practice-guide-on-training-methodologies ===.
* Depuis 2019, il participe //ad personam// à 3 groupes de travail de type ''Informal Expert Group'' : "''Informal Expert Group on Technical Trainings''"+++^*[»] Voir https://www.enisa.europa.eu/news/enisa-news/technical-trainings-expert-group ===, "''Informal Expert Group on EU Member States Incident Response Development''"+++^*[»] Voir https://www.enisa.europa.eu/topics/csirts-in-europe/csirt-capabilities/informal-expert-group-on-eu-ms-incident-response-development === et "''Informal Expert Group on CSIRT and SOC Set Up''"+++^*[»] Voir https://www.enisa.europa.eu/publications/how-to-set-up-csirt-and-soc ===.
* Depuis 2021, il participe //ad personam// à un groupe de travail comme ''Subject Matter Expert''
!!!Commission Européenne (INEA/HADAE)
INEA : +++^*[détails »] Innovation and Networks Executive Agency - https://ec.europa.eu/inea/en/ ===
* Entre 2018 et 2020, il a participé //ad personam// comme expert évaluateur aux dépouillements d'appels d'offres ''CEF Telecom Call - Cybersecurity'' de la Commission Européenne :
** CEF-TC-2018-3+++^*[détails »] Voir https://ec.europa.eu/inea/en/connecting-europe-facility/cef-telecom/apply-funding/2018-cyber-security ===, CEF-TC-2019-2+++^*[détails »] Voir https://ec.europa.eu/inea/en/connecting-europe-facility/cef-telecom/apply-funding/2019-cybersecurity === et CEF-TC-2020-2+++^*[détails »] Voir https://ec.europa.eu/inea/en/connecting-europe-facility/cef-telecom/apply-funding/2020-cybersecurity ===.
!Enseignement
* Il a commencé à enseigner en 1985 au CNAM, puis dans différentes écoles d'ingénieurs sur des spécialités réseaux puis sécurité (ISEP, EPITA, ECE …).
* Il a enseigné plusieurs matières dans les 3 Mastères Spécialisés de l'''ISEP'' (Cloud, Cyber-Sécurité, Management et Protection des Données à Caractère Personnel)
* Il n'enseigne plus aujourd'hui que dans les Mastères Spécialisés de l'''EGE'' (MRSIC/MaCYB) pour les promotions en France et au Maroc.
!Certifications
* Certifié TRANSITS-I (2010).
* Certifié ISO 27005 Risk Management (2010).
* Certifié EBIOS Risk Management (2010).
* ''Formateur Certifié TRANSITS-I (2015)''.
* Évaluateur Technique COFRAC (2018 à 2024).
* ''Auditeur Certifié SIM3 (2018)''.
* ''Formateur Certifié SIM3 (2022).'''
<html><i class='fa fa-lock'</i></html> Uniquement sur la partie privée du site
<<tabs Veille 'Veille Quotidienne' '' 'Veille - Quotidienne' 'Qualification' '' 'Veille - Qualification' 'Presse IT' '' 'Veille - Presse IT' 'Presse Généraliste et Agences' '' [[Veille - Presse Généraliste et Agences]]>>
Les bulletins de veille sont publiés quotidiennement sur la partie privée de ce site.
Les archives de la veille quotidienne sont mises à disposition sous certaines conditons.
Pour toute demande de précision, voir la rubrique [[Contact]].
!!Qualification des sources
Il faut distinguer les plus pertinentes telles que les ''sources primaires et secondaires'', et les moins pertinentes (sources tertiaires ou pire…).
* Les sources ''primaires'' sont : des publications, recherches, rapports d'analyse, travaux originaux, des données chiffrées… dont l'émetteur est connu, explicite. Il s'agit donc d'un ''élément brut'', public ou non, auquel on a accès, et qui ne fait l'objet d'aucun traitement par un tiers avant que cet accès soit donné.
* Les sources ''secondaires'' sont : des articles, documents, publications dans lesquels les auteurs ont réalisé une première analyse, évaluation, synthèse, explication de texte à partir de sources primaires (publiques ou non) à leur disposition, et qu'ils peuvent faire l'objet d'une interprétation ''objective ou non''.
** Une source secondaire aura plus de valeur lorsque la source primaire : est explicitement mentionnée et/ou que le moyen d'y accéder est donné et/ou que le délai entre les publications de la source primaire et de la source secondaire est faible
* Les sources ''tertiaires'' sont : des compilations généralement très larges de sources secondaires et qui fournit une synthèse de leur contenu, qui peuvent être ''objectives ou non'', être centrées sur une thématique donnée et ne couvrant donc pas globalité d'une problématique, ou au contraire très globale et réductrice.
** Dans le cas de ces sources, la réputation, l'objectivité et la qualité du traitement est primordiale. De même la mention explicite des sources primaires ou secondaires et leur date sont indispensables pour être digne d'intérêt.
** Les autres sources ne sont généralement pas intéressantes !
!!Exemple d'utilisation
Cette rubrique et les onglets suivants ont notamment pour objectif de faciliter le travail des équipes CSIRTs dans leur traitement du paramètre "T-2 / Information Sources List" dans leur évaluation de maturité [[SIM3]].
!!Code de l'Amirauté pour la qualification des sources
Le Code de l'Amirauté - ou //Admiralty Code// - est une méthode d'évaluation des éléments de renseignement recueillis, en partant du principe qu'ils ne peuvent pas être acceptés tels quels. Elle s'appuie sur une notation à deux caractères qui permet d'évaluer la ''fiabilité de la source'' et le ''degré de confiance'' accordé à l'information.
!!Fiabilité
La fiabilité d'une source est évaluée sur la base d'une évaluation technique de ses capacités et de ses antécédents. Les 6 niveaux sont symbolisés par une lettre :
* __A - Totalement fiable :__ ''Aucun doute'' quant à l'authenticité, la fiabilité ou la compétence de la source. L'historique corrobore la fiabilité de la source.
* __B - Généralement fiable :__ ''Doute mineur'' quant à l'authenticité, la fiabilité ou la compétence ; la plupart du temps, les informations sont valables.
* __C - Assez fiable :__ ''Doute'' sur l'authenticité, la fiabilité ou la compétence, mais a déjà fourni des informations valables par le passé.
* __D - Pas habituellement fiable :__ ''Doute important'' quant à l'authenticité, la fiabilité ou la compétence, mais a déjà fourni des informations valables par le passé.
* __E - Non fiable :__ ''Manque'' d'authenticité, de fiabilité et de compétence ; antécédents d'informations non valables.
* __F - La fiabilité ne peut être jugée :__ ''Inconnue'', il n'existe aucune base pour évaluer la fiabilité de la source.
!!Crédibilité
La crédibilité d'un élément est évaluée en e"fonction de la probabilité et du degré de corroboration par d'autres sources. Les 6 niveaux sont symbolisés par une chiffre de 1 à 6 :
1 - Confirmé par d'autres sources : ''Confirmé'' par d'autres sources indépendantes. Logique de façon intrinsèque, et cohérent avec d'autres informations sur le sujet.
2 - Probablement vrai : ''non confirmé''. Logique de façon intrinsèque, et cohérent avec d'autres informations sur le sujet
3 - Possiblement vrai : ''non confirmé''. Raisonnablement logique en soi et en accord avec d'autres informations sur le sujet
4 - Douteux : Non confirmé. Possible mais ''pas logique'' ; pas d'autres informations sur le sujet
5 - Improbable : Non confirmé. Pas logique en soi ; contredit par d'autres informations sur le sujet
6 - La vérité ne peut être jugée : Il n'existe aucune base pour évaluer la validité de l'information.
!!Webographie
* Wikipedia : "[[Source (information) ⇗|https://fr.wikipedia.org/wiki/Source_(information)]]"
* Wikipedia : "[[Sources primaires, secondaires et tertiaires ⇗|https://fr.wikipedia.org/wiki/Wikip%C3%A9dia:Sources_primaires,_secondaires_et_tertiaires]]".
* Wikipedia : [[Admiralty code ⇗|https://en.wikipedia.org/wiki/Admiralty_code]] [img[English|iLang/lang_EN.gif]]
* Projet MISP : [[Admiralty Scale ⇗ you |https://github.com/MISP/misp-taxonomies/blob/main/admiralty-scale/README.md]] [img[English|iLang/lang_EN.gif]]
/%|sortable|k
|Source|Pays|Intérêt|b|RSS|Commentaires|h
|VulnCheck|US|| [[⇗|https://vulncheck.com/blog/]] |||
|…|…|…|…|…|…|
%/@@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@ … <html><i class='fa fa-person-digging'</i></html> … Article en cours de rédaction … <html><i class='fa fa-person-digging'</i></html> … @@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@
|sortable|k
|Source|Pays|Intérêt|b|RSS|Commentaires|h
|Bleeping Computer||bgcolor:#00ff00; 1 | [[⇗|https://www.bleepingcomputer.com/]] | [[⇗|https://www.bleepingcomputer.com/feed/]] |Très pertinent, documenté et suivi des événements |
|Security Week||bgcolor:#00ff00; 1,5 | [[⇗|https://www.securityweek.com/]] | [[⇗|https://www.securityweek.com/feed]] |Bien, catégories thématiques |
|The Hacker News|| 2 | [[⇗|https://thehackernews.com/]] ||Bien|
|Dark Reading|| 2 | [[⇗|https://www.darkreading.com/]] | [[⇗|https://www.darkreading.com/rss_feeds.asp]] |Bien |
|>|>|>|>|>|bgcolor:#000091;|
|Bank Info Security|| 2,5 | |||
|DataBreach Today|| 2,5 | |||
|>|>|>|>|>|bgcolor:#000091;|
|Info Security Magazine|UK| 3 | ||Souvent de la reprise avec du retard|
|CSO Online||bgcolor:#ffa500; 4 | [[⇗|https://www.csoonline.com/]] ||Parfois des informations intéressantes, mais retard par rapport à l'actualité|
|Cyber Security News||bgcolor:#ffa500; 4 | [[⇗|https://cybersecuritynews.com/]] |||
|SC Media||bgcolor:#ffa500; 4 | [[⇗|https://www.scmagazine.com/]] |||
|Security Boulevard||bgcolor:#ffa500; 4 | [[⇗|https://securityboulevard.com/]] ||Recopie sans valeur ajoutée, mais avec les liens originaux|
|The Cyber Security Hub||bgcolor:#ffa500; 4 | [[⇗|https://www.cshub.com/]] |||
|The Register|UK|bgcolor:#ffa500; 4 | ||Parfois pertinent, parfois imprécis voire limite, souvent en retard |
|ZD Net||bgcolor:#E1000F;color:#FFFFFF; 5 | ||Peu de valeur ajoutée|
|Red Packet Security||bgcolor:#E1000F;color:#FFFFFF; 5 | [[⇗|https://www.redpacketsecurity.com/]] ||Recopie sans valeur ajoutée|
@@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@ … <html><i class='fa fa-person-digging'</i></html> … Article en cours de rédaction … <html><i class='fa fa-person-digging'</i></html> … @@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@
|sortable|k
|Source|Pays|Intérêt|b|RSS|Commentaires|h
|Reuters|US| 2 |||Pertinent, quelques scoops|
|Bloomberg|US| 2,5 ||||
|>|>|>|>|>|bgcolor:#000091;|
|Presse économique|| 4 |||Parfois un peu de valeur ajoutée|
|Associated Press|US|bgcolor:#ffa500; 4 |||Peu de valeur ajoutée|
|Presse généraliste||bgcolor:#ffa500; 4 |||Rarement de la valeur ajoutée|
|AFP|FR|bgcolor:#E1000F;color:#FFFFFF; 5 |||Non|
@@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@ … <html><i class='fa fa-person-digging'</i></html> … Article en cours de rédaction … <html><i class='fa fa-person-digging'</i></html> … @@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@
@@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@ … <html><i class='fa fa-person-digging'</i></html> … Article en cours de rédaction … <html><i class='fa fa-person-digging'</i></html> … @@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@ -- Liste ''non exhaustive'' de ''<<tiddler f_NbAllny with: 'Any' 'CTIsupplier_'>>'' sociétés qui produisent des informations de CTI.
{{ss4col{<<forEachTiddler where 'tiddler.tags.containsAny(["CTIsupplier_"])' sortBy 'tiddler.title.toUpperCase()' script 'function getGroupCaption(tiddler) { return tiddler.title.substr(15,1).toUpperCase(); } function getGroupTitle(tiddler, context) { if (!context.lastGroup || context.lastGroup != getGroupCaption(tiddler)) { context.lastGroup = getGroupCaption(tiddler); return "* __\'\'"+(context.lastGroup?context.lastGroup:"no tags")+"…\'\'__\n"; } else return ""; }' write 'getGroupTitle(tiddler, context)+"** [[" + tiddler.title.substr(15)+"|"+tiddler.title+"]] (\<\<tiddler [["+tiddler.title+"::d]]\>\>)^^+++*[»]... \<\<tiddler [["+tiddler.title+"]]\>\> ===^^\n"'>>}}}
<<tabs tReFrigo 'CERT ou CSIRT' '' [[CSIRT ou CERT##CEIRT]] 'PSIRT' '' [[CSIRT ou CERT##PSIRT]] 'Vocabulaire' '' [[CSIRT ou CERT##Vocab]] 'ISAC' '' [[CSIRT ou CERT##ISAC]]>>
/%
!CEIRT
__''CERT ou CSIRT ? Une analogie…''__
* Un ''réfrigérateur''+++^*[»] https://fr.wikipedia.org/wiki/Réfrigérateur === est un terme ''générique'' .. comme l'est le terme ''CSIRT''
* Un ''Frigidaire''+++^*[»] https://fr.wikipedia.org/wiki/Frigidaire === est un mot du langage courant, mais avant tout une marque .. comme l'est le terme ''CERT''
* Un ''frigo'' est un mot du langage courant, mais avant tout le diminutif d'une marque .. comme l'est le terme ''CERT''
** ^^Le nom //Frigidaire// aussi familièrement appelé //frigo//, est devenu par antonomase+++^*[»] https://fr.wikipedia.org/wiki/Antonomase ===, un synonyme de //réfrigérateur//, comme pour des produits dont le nom commercial devient le nom générique^^
__''Réfrigérateur''__ ou ''//Frigo//'' ?
* Pour clore le débat, ce sont des termes ''similaires'' dans le langage courant, mais autant utiliser le terme correct.
* Il est donc préférable d'utilier le mot __@@color:#000091;''réfrigérateur''@@__ au lieu de --@@color:#E1000F;//frigo//@@--, donc utiliser __@@color:#000091;''CSIRT''@@__ au lieu de --@@color:#E1000F;//CERT//@@--… CQFD
!PSIRT
__''Un PSIRT''__
* Un ''PSIRT'' est un //Product Security Incident Response Team// et donc un CSIRT qui se concentre sur les aspects produits.
* Un ''PSIRT'' a donc pour vocation d'annoncer et de gérer les vulnérabilités affectant les produits qui font partie du catalogue de la société.
!Vocab
__''Exceptions : quand les termes CSIRT et CERT sont utilisés au sein d'une même organisation''__
* Cela se produit dans les organisations publiques ou privées où les rôles et responsabilités ont été clairement définies, où les services offerts ont été formalisés et répartis entre l'équipe ''CSIRT'' à vocation de sécurité ''opérationnelle'' d'un côté (on pourrait aussi parler de SOC…), et l'équipe ''CERT'' de gestion d'''incidents'' (voire de crise…) de l'autre
* Parfois le terme ''CERT'' désigne l'organisation qui regroupe à la fois les activités de ''CSIRT'' (à vocation informatique interne ou externe) et celles de ''PSIRT'' (à vocation produits)
__''Précisions et documents de référence''__
|!CERT (une marque)|bgcolor:#000091;|!CSIRT (le terme générique)|
|<<tiddler [[CERT - Définition]]>>|~|<<tiddler [[CSIRT - Définition]]>>|
!ISAC
Un ISAC (Information Sharing and Analysis Centers) est un centre d'analyse et de partage de l'information (ISAC). Il est constitué de membres pour qui l'ISAC collecte, analyse et diffuse des informations directement exploitables sur l'état de la menace.
Même si le "S" correspond au mot "Sharing", il pourrait ausi bien correspondra au "S" du mot "''Sectoriel''", puisque les membres d'un ISAC font tous partie d'un même secteur d'activité économique.
Le concept d'ISAC a été officialisé par la //PDD-63// (//Presidential Decision Directive-63//) qui a été signée le 22 mai 1998. Le gouvernement américain a ensuite demandé à chaque secteur d'infrastructure critique de créer des organisations sectorielles pour partager des informations sur les risques, les menaces et les vulnérabilités. Les premières créations d'ISACs ont eu lieu dès l'année suivante en 1999.
La plupart des ISACs disposent de capacités d'alerte sur les menaces, de signalement d'incidents, de réaction et de partage d'informations exploitables pour un secteur donné.
Le niveau et la qualité de partage sont généralement très élevés dans les ISACs.
!end
%/
''CERT'' est le sigle de ''Computer Emergency Response Team'' et est __''une marque déposée''__ par l'Université de Carnegie Mellon (Pittsburgh, Pennsylvanie, Etats-Unis).
C'est là que le premier CERT, le CERT/CC, a été créé à l'initiative de la DARPA.
Jusqu'en 2021, il était nécessaire de faire une demande à son service juridique pour avoir le droit de l'utiliser dans le nom de son équipe de réponse à incidents.
* ''En aucun cas'' la délivrance du droit d'utiliser le sigle CERT n'est ou n'a été une qualification, une validation, ou une certification de l'équipe, ou une reconnaissance de son expertise ou de son sérieux. Même si certaines personnes ont pu affirmer le contraire, c'est faux.
* L'accord n'était validé que par le ''service juridique''.
__Depuis avril 2021__, le terme CERT est libre de droit ''en dehors des Etats-Unis''.
@@color:#000091;▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬@@
__Documents de référence__
* ^^__SEI CMU :__ Utilisation du sigle 'CERT'® aux États-Unis
⇗ [[Authorized Users of the CERT Mark ⇗|https://www.sei.cmu.edu/our-work/cybersecurity-center-development/authorized-users/]]^^
''CSIRT'' est le sigle de ''Computer Security Incident Response Team''
''Il a été créé par Don Stikvoort en 1998 pour disposer d'un __terme générique__ et éviter de devoir utiliser la marque CERT''.
La première utilisation du terme CSIRT se trouve dans le document "''Handbook for Computer Security Incident Response Teams (CSIRTs)''" co-rédigé par Moira J. West-Brown, Don Stikvoort, et Klaus-Peter Kossakowski.
@@color:#000091;▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬@@
Le terme ''PSIRT'' (''//Product Security Incident Response Team//'') désigne une entité qui se concentre sur l'identification, l'évaluation et l'élimination des risques associés aux failles de sécurité des produits, y compris les offres, les solutions, les composants et/ou les services produits et/ou vendus par une organisation.
@@color:#000091;▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬@@
__Documents de référence__
* ^^__SEI CMU :__ ''Handbook for Computer Security Incident Response Teams (CSIRTs)''
⇗ version [[initiale de décembre 1998 ⇗|https://citeseerx.ist.psu.edu/document?repid=rep1&type=pdf&doi=e878d38d04dd1717aaf9dd1e596ca9857756ad30]] /% https://apps.dtic.mil/sti/pdfs/ADA358945.pdf %/et [[mise à jour d'avril 2003 ⇗|https://resources.sei.cmu.edu/library/asset-view.cfm?assetid=6305]]^^
<<tabs tRefer '🇫🇷' 'Menu en français' [[Référentiels - Menu##FR]] '🇬🇧' 'Menu en anglais' [[Référentiels - Menu##EN]]>>
/%
!FR
|>| @@color:#E1000F;<html><i class='fa fa-book'</i></html> ''[[Référentiels|Référentiels - Frameworks]]''@@ : Cadriciels CSIRTs, PSIRTs… |
|[[⇒ FIRST CSIRT|Référentiels - CSIRT]]|//Cadriciel CSIRT Framework du FIRST…//|
|[[⇒ FIRST PSIRT|Référentiels - PSIRT]]|//Cadriciel PSIRT Framework du FIRST…//|
|[[⇒ Divers SOC|Référentiels - SOC]]|//Cadriciel du MITRE, le SOC-CMM Framework…//|
|[[⇒ FIRST Services|Référentiels - Types Services]]|//Services minimum à offrir…//|
|[[⇒ IETF|Référentiels - IETF]]|//RFC pertinentes…//|
|[[⇒ ANSSI|Référentiels - ANSSI]]|//Référentiels ANSSI : PRIS, PDIS…//|
|[[⇒ OSI|Référentiels - ISO]]|//Référentiels OSI pertinents…//|
|[[⇒ ITU|Référentiels - ITU]]|//Référentiels ITU pertinents…//|
|[[⇒ Autres|Référentiels - Autres]]|//Autres référentiels…//|
|[[⇒ Synthèse|Référentiels - Frameworks]]|//Tout sur les référentiels…//|
|[[⇒ Maturité|Référentiels - Maturité]]|//Autres omdèles de maturité…//|
|▬▬▬▬▬▬▬▬▬▬|▬▬▬▬▬▬▬▬▬▬|
!EN
|>| @@color:#E1000F;<html><i class='fa fa-book'</i></html> ''[[Frameworks|Référentiels - Frameworks]]''@@ : Frameworks for CSIRTs, PSIRTs… |
|[[⇒ CSIRT-related|Référentiels - CSIRT]]|//FIRST CSIRT Framework…//|
|[[⇒ PSIRT-related|Référentiels - PSIRT]]|//FIRST PSIRT Framework…//|
|[[⇒ SOC-related|Référentiels - SOC]]|//MITRE and SOC-CMM Frameworks…//|
|[[⇒ Services-related|Référentiels - Types Services]]|//Expected services to be delivered…//|
|[[⇒ IETF|Référentiels - IETF]]|//Some RFCs…//|
|[[⇒ ANSSI|Référentiels - ANSSI]]|//ANSSI : Providers' expected qualifications…//|
|[[⇒ ISO|Référentiels - ISO]]|//ISO standards…//|
|[[⇒ ITU|Référentiels - ITU]]|//Some ITU recommandations…//|
|[[⇒ Others|Référentiels - Autres]]|//Other Frameworks…//|
|[[⇒ Synthèse|Référentiels - Frameworks]]|//Wrap-up on frameworks…//|
|[[⇒ Maturity|Référentiels - Maturité]]|//Other maturity models…//|
|▬▬▬▬▬▬▬▬▬▬|▬▬▬▬▬▬▬▬▬▬|
!end
|[[⇒ ISAC|Référentiels - ISAC]]|//Cadriciel SOC-CMM Framework…//|
%/
<<tabs tCadriciel 'Présentation' '' 'Référentiels - Présentation' 'CSIRTs' 'Cadriciel pour CSIRTs' [[Référentiels - CSIRT]] 'PSIRTs' 'Cadriciel pour PSIRTs' [[Référentiels - PSIRT]] 'Services à offrir' 'Services minimum à offrir par les CSIRTs, PSIRTs, SOC, et ISACs' [[Référentiels - Types Services]] 'SOCs' 'Cadriciel pour SOCs' [[Référentiels - SOC]] 'IETF' 'RFC publiées' [[Référentiels - IETF]] 'ANSSI' 'Référentiels ANSSI publiés' [[Référentiels - ANSSI]] 'ITU' 'Recommendations ITU publiées' [[Référentiels - ITU]] 'ISO' 'Standards ISO publiées' [[Référentiels - ISO]] >>
<<tiddler .ReplaceTiddlerTitle with: [[Référentiels CSIRT et PSIRT, SOC, ISAC, IETF, ANSSI …]]>>
/% 'ISACs' 'Cadriciel pour ISACs' [[Référentiels - ISAC]] %/
Les informations disponibles dans les onglets ou ci-dessous sont :
* Les documents de références du FIRST pour les CSIRTs +++*@[»]>...<<tiddler [[Référentiels - CSIRT]]>> ===
* Les documents de références du FIRST pour les PSIRTs +++*@[»]>...<<tiddler [[Référentiels - PSIRT]]>> ===
* Les services qui devraient être proposés //a minima// par les CSIRTs, PSIRTs, SOCs et ISACs, vus par le FIRST +++*@[»]>...<<tiddler [[Référentiels - Types Services]]>> ===
* Les documents de références du MITRE et de SOC-CMM pour les SOCs +++*@[»]>...<<tiddler [[Référentiels - SOC]]>> ===
* Les RFC de références pour les CSIRT et la CTI +++*@[»]>...<<tiddler [[Référentiels - IETF]]>> ===
* Les recommendations de l'ITU +++*@[»]>...<<tiddler [[Référentiels - ITU]]>> ===
/% * Les documents de références pour les ISACs +++*@[»]>...<<tiddler [[Référentiels - ISAC]]>> === %/
Le référentiel du FIRST pour les CSIRTs s'appelle le ''CSIRT Framework''. Il a été défini par le groupe de travail (//SIG//) ''CSIRT Framework'' [[⇗|https://www.first.org/global/sigs/csirt/]]. [>img(50px,auto)[iCSIRT/FIRST_ico.png]]
@@color:#000091;▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬@@
<<tabs tCSIRT 'Documents' '' [[Référentiels - CSIRT - Docs]] 'Schémas' '' [[Référentiels - CSIRT - Schemas]] 'Services' '' [[Référentiels - CSIRT##Services]] 'Webographie' '' [[Référentiels - CSIRT##Webographie]] >>
/%
!Services
Les terminologies employées sont basés sur le document de référence suivant :
* "''CSIRT Services Framework''" v2.1 [[HTML ⇗|https://www.first.org/standards/frameworks/csirts]] / [[Français PDF ⇗|https://www.first.org/standards/frameworks/csirts/FIRST_CSIRT_Services_Framework_v2.1.0_fr.pdf]] / [[Anglais PDF ⇗|https://www.first.org/standards/frameworks/csirts/FIRST_CSIRT_Services_Framework_v2.1.0_bugfix1.pdf]]
<<tabs tCSIRTfrm 'Zones et Services' '' [[Référentiels - CSIRT - Framework A+S]] 'Zones, Services et Fonctions' '' [[Référentiels - CSIRT - Framework A+S+F]] >>
!Webographie
|Sources|Détails|Liens|h
|FIRST|Groupe de travail (//SIG//) ''CSIRT Framework''| [[⇗|https://www.first.org/global/sigs/csirt/]] |
|FIRST|''CSIRT Framework'' version 2.1 en ''français'' (PDF)| [[⇗|https://www.first.org/standards/frameworks/csirts/FIRST_CSIRT_Services_Framework_v2.1.0_fr.pdf]] |
|FIRST|''CSIRT Framework'' version 2.1 en anglais (HTML)| [[⇗|https://www.first.org/standards/frameworks/csirts/csirt_services_framework_v2.1]] |
|FIRST|''CSIRT Framework'' version 2.1 en anglais (PDF)| [[⇗|https://www.first.org/standards/frameworks/csirts/FIRST_CSIRT_Services_Framework_v2.1.0_bugfix1.pdf]] |
|>|>|bgcolor:#000091;|
|FIRST|''CSIRT Roles and Competences'' version 0.9 (draft) en ''anglais'' (HTML)| [[⇗|https://www.first.org/standards/frameworks/csirts/csirt_roles_competences]] |
|FIRST|''CSIRT Roles and Competences'' version 0.9 (draft) en ''anglais'' (PDF)| [[⇗|https://www.first.org/standards/frameworks/csirts/FIRST_CSIRT_Services_Roles_and_Competencies_v_0.9.0.pdf]] |
!end
%/
!CSIRT Framework version 2.1 : Zones/Service Areas, Services (en français et en anglais)
| § |bgcolor:#FFFFFF;|Zones|Services|bgcolor:#FFFFFF;|Areas|Services|h
| 5 |!|>|!Gestion des événements relatifs à la sécurité des informations|!|>|!Information Security Event Management|
| 5.1 |~||Surveillance et détection|~||Monitoring and Detection|
| 5.2 |~||Analyse des événements|~||Event Analysis|
|>|>|>|>|>|>||
| 6 |!|>|!Gestion des incidents relatifs à la sécurité des informations|!|>|!Information Security Incident Management|
| 6.1 |~||Acceptation des signalements d'incidents relatifs à la sécurité des informations|~||Information Security Incident Report Acceptance|
| 6.2 |~||Analyse des incidents relatifs à la sécurité des informations|~||Information Security Incident Analysis|
| 6.3 |~||Analyse des artefacts et des preuves judiciaires|~||Artifact and Forensic Evidence Analysis|
| 6.4 |~||Atténuation et reprise|~||Mitigation and Recovery|
| 6.5 |~||Coordination des incidents relatifs à la sécurité des informations|~||Information Security Incident Coordination|
| 6.6 |~||Appui à la gestion de crise|~||Crisis Management Support|
|>|>|>|>|>|>||
| 7 |!|>|!Gestion des vulnérabilités|!|>|!Vulnerability Management|
| 7.1 |~||Découverte/recherche de vulnérabilités|~||Vulnerability Discovery/Research|
| 7.2 |~||Recueil des rapports de vulnérabilité|~||Vulnerability Report Intake|
| 7.3 |~||Analyse des vulnérabilités|~||Vulnerability Analysis|
| 7.4 |~||Coordination des vulnérabilités|~||Vulnerability Coordination|
| 7.5 |~||Divulgation des vulnérabilités|~||Vulnerability Disclosure|
| 7.6 |~||Intervention en cas de vulnérabilité|~||Vulnerability Response|
|>|>|>|>|>|>||
| 8 |!|>|!Appréciation de la situation|!|>|!Situational Awareness|
| 8.1 |~||Acquisition de données|~||Data Acquisition|
| 8.2 |~||Analyse et synthèse|~||Analysis and Synthesis|
| 8.3 |~||Communication|~||Communication|
|>|>|>|>|>|>||
| 9 |!|>|!Transfert de connaissances|!|>|!Knowledge Transfer|
| 9.1 |~||Renforcement des connaissances|~||Awareness Building|
| 9.2 |~||Formation et apprentissage|~||Training and Education|
| 9.3 |~||Exercices|~||Exercises|
| 9.4 |~||Conseil technique et stratégique|~||Technical and Policy Advisory|
|>|>|>|>|>|>||
!CSIRT Framework version 2.1 : Service Areas, Services, Functions (en anglais)
|>|>|>|>|!|
|1 |>|>||Purpose |
|2 |>|>||Introduction and Background |
|3 |>|>||The Difference Between a CSIRT and a PSIRT |
|4 |>|>||CSIRT Services Framework Structure |
|>|>|>|>|!|
|5 |>|>|!Service Area |!Information Security Event Management |
|5.1 ||>|Service |Monitoring and detection |
|5.1.1 |||//Function// |Log and sensor management |
|5.1.2 |||//Function// |Detection use case management |
|5.1.3 |||//Function// |Contextual data management |
|5.2 ||>|Service |Event analysis |
|5.2.1 |||//Function// |Correlation |
|5.2.2 |||//Function// |Qualification |
|>|>|>|>|!|
|6 |>|>|!Service Area |!Information Security Incident Management |
|6.1 ||>|Service |Information security incident report acceptance |
|6.1.1 |||//Function// |Information security incident report receipt |
|6.1.2 |||//Function// |Information security incident triage and processing |
|6.2 ||>|Service |Information security incident analysis |
|6.2.1 |||//Function// |Information security incident triage (prioritization and categorization) |
|6.2.2 |||//Function// |Information collection |
|6.2.3 |||//Function// |Detailed analysis coordination |
|6.2.4 |||//Function// |Information security incident root cause analysis |
|6.2.5 |||//Function// |Cross-incident correlation |
|6.3 ||>|Service |Artifact and forensic evidence analysis |
|6.3.1 |||//Function// |Media or surface analysis |
|6.3.2 |||//Function// |Reverse engineering |
|6.3.3 |||//Function// |Run time or dynamic analysis |
|6.3.4 |||//Function// |Comparative analysis |
|6.4 ||>|Service |Mitigation and recovery |
|6.4.1 |||//Function// |Response plan establishment |
|6.4.2 |||//Function// |Ad hoc measures and containment |
|6.4.3 |||//Function// |System restoration |
|6.4.4 |||//Function// |Other information security entities support |
|6.5 ||>|Service |Information security incident coordination |
|6.5.1 |||//Function// |Communication |
|6.5.2 |||//Function// |Notification distribution |
|6.5.3 |||//Function// |Relevant information distribution |
|6.5.4 |||//Function// |Activities coordination |
|6.5.5 |||//Function// |Reporting |
|6.5.6 |||//Function// |Media communication |
|6.6 ||>|Service |Crisis management support |
|6.6.1 |||//Function// |Information distribution to constituents |
|6.6.2 |||//Function// |Information security status reporting |
|6.6.3 |||//Function// |Strategic decisions communication |
|>|>|>|>|!|
|7 |>|>|!Service Area |!Vulnerability Management |
|7.1 ||>|Service |Vulnerability discovery / research |
|7.1.1 |||//Function// |Incident response vulnerability discovery |
|7.1.2 |||//Function// |Public source vulnerability discovery |
|7.1.3 |||//Function// |Vulnerability research |
|7.2 ||>|Service |Vulnerability report intake |
|7.2.1 |||//Function// |Vulnerability report receipt |
|7.2.2 |||//Function// |Vulnerability report triage and processing |
|7.3 ||>|Service |Vulnerability analysis |
|7.3.1 |||//Function// |Vulnerability triage (validation and categorization) |
|7.3.2 |||//Function// |Vulnerability root cause analysis |
|7.3.3 |||//Function// |Vulnerability remediation development |
|7.4 ||>|Service |Vulnerability coordination |
|7.4.1 |||//Function// |Vulnerability notification/reporting |
|7.4.2 |||//Function// |Vulnerability stakeholder coordination |
|7.5 ||>|Service |Vulnerability disclosure |
|7.5.1 |||//Function// |Vulnerability disclosure policy and infrastructure maintenance |
|7.5.2 |||//Function// |Vulnerability announcement/communication/dissemination |
|7.5.3 |||//Function// |Post-vulnerability disclosure feedback |
|7.6 ||>|Service |Vulnerability response |
|7.6.1 |||//Function// |Vulnerability detection / scanning |
|7.6.2 |||//Function// |Vulnerability remediation |
|>|>|>|>|!|
|8 |>|>|!Service Area |!Situational Awareness |
|8.1 ||>|Service |Data acquisition |
|8.1.1 |||//Function// |Policy aggregation, distillation, and guidance |
|8.1.2 |||//Function// |Asset mapping to functions, roles, actions, and key risks |
|8.1.3 |||//Function// |Collection |
|8.1.4 |||//Function// |Data processing and preparation |
|8.2 ||>|Service |Analysis and synthesis |
|8.2.1 |||//Function// |Projection and inference |
|8.2.2 |||//Function// |Event detection (through alerting and/or hunting) |
|8.2.3 |||//Function// |Information security incident management decision support |
|8.3 ||>|Service |Communication |
|8.3.1 |||//Function// |Internal and external communication |
|8.3.2 |||//Function// |Reporting and recommendations |
|8.3.3 |||//Function// |Implementation |
|8.3.4 |||//Function// |Dissemination / integration / information sharing |
|8.3.5 |||//Function// |Management of information sharing |
|8.3.6 |||//Function// |Feedback |
|>|>|>|>|!|
|9 |>|>|!Service Area |!Knowledge Transfer |
|9.1 ||>|Service |Awareness building |
|9.1.1 |||//Function// |Research and information aggregation |
|9.1.2 |||//Function// |Reports and awareness materials development |
|9.1.3 |||//Function// |Information dissemination |
|9.1.4 |||//Function// |Outreach |
|9.2 ||>|Service |Training and education |
|9.2.1 |||//Function// |Knowledge, skill, and ability requirements gathering |
|9.2.2 |||//Function// |Educational and training materials development |
|9.2.3 |||//Function// |Content delivery |
|9.2.4 |||//Function// |Mentoring |
|9.2.5 |||//Function// |CSIRT staff professional development |
|9.3 ||>|Service |Exercises |
|9.3.1 |||//Function// |Requirements analysis |
|9.3.2 |||//Function// |Format and environment development |
|9.3.3 |||//Function// |Scenario development |
|9.3.4 |||//Function// |Exercises execution |
|9.3.5 |||//Function// |Exercise outcome review |
|9.4 ||>|Service |Technical and policy advisory |
|9.4.1 |||//Function// |Risk management support |
|9.4.2 |||//Function// |Business continuity and disaster recovery planning support |
|9.4.3 |||//Function// |Policy support |
|9.4.4 |||//Function// |Technical advice |
<<tabs tCSIRT 'CSIRT Framework' '' [[Référentiels - CSIRT - Docs##FrameC]] 'CSIRT Roles and Competences' '' [[Référentiels - CSIRT - Docs##FrameCRoles]] >>
/%
!FrameC
|''CSIRT Framework'' version 2.1|
|• [img[English|iLang/lang_EN.gif]] en anglais : formats HTML [[⇗|https://www.first.org/standards/frameworks/csirts/csirt_services_framework_v2.1]] et PDF [[⇗|https://www.first.org/standards/frameworks/csirts/FIRST_CSIRT_Services_Framework_v2.1.0_bugfix1.pdf]]
• [img[Français|iLang/lang_FR.gif]] en français : format PDF [[⇗|https://www.first.org/standards/frameworks/csirts/FIRST_CSIRT_Services_Framework_v2.1.0_fr.pdf]]|
| Original : [[image ⇗|https://www.first.org/standards/frameworks/csirts/img/service-areas-and-services-2.1.0.png]] sur la page du [[document ⇗|https://www.first.org/standards/frameworks/csirts/csirt_services_framework_v2.1]]
[img(800px,auto)[iCSIRT/service-areas-and-services-2.1.0.png]] |
!FrameCRoles
|''CSIRT Roles and Competences'' (//Addendum//) version 0.9 (draft) qui traite des rôles et des compétences|
|• [img[English|iLang/lang_EN.gif]] en anglais : format HTML [[⇗|https://www.first.org/standards/frameworks/csirts/csirt_roles_competences]] et PDF [[⇗|https://www.first.org/standards/frameworks/csirts/FIRST_CSIRT_Services_Roles_and_Competencies_v_0.9.0.pdf]]
• [img[Français|iLang/lang_FR.gif]] en français : pas encore de traduction|
| Original : [[image ⇗|https://www.first.org/standards/frameworks/csirts/service-areas-and-competencies-0.9.0.circle.png]] sur la page du [[document ⇗|https://www.first.org/standards/frameworks/csirts/csirt_roles_competences]]
[img(800px,auto)[iCSIRT/service-areas-and-competencies-0.9.0.circle.png]] |
!end
%/
<<tabs tCSIRT 'CSIRT Framework' '' [[Référentiels - CSIRT - Schemas##FrameC]] 'CSIRT Roles and Competences' '' [[Référentiels - CSIRT - Schemas##FrameCRoles]] >>
/%
!FrameC
| ''CSIRT Framework'' version 2.1
Original : [[image ⇗|https://www.first.org/standards/frameworks/csirts/img/service-areas-and-services-2.1.0.png]] sur la page du [[document ⇗|https://www.first.org/standards/frameworks/csirts/csirt_services_framework_v2.1]] |h
| [img(800px,auto)[iCSIRT/service-areas-and-services-2.1.0.png]] |
!FrameCRoles
| ''CSIRT Roles and Competences'' (//Addendum//) version 0.9 (draft)
Original : [[image ⇗|https://www.first.org/standards/frameworks/csirts/service-areas-and-competencies-0.9.0.circle.png]] sur la page du [[document ⇗|https://www.first.org/standards/frameworks/csirts/csirt_roles_competences]] |h
| [img(800px,auto)[iCSIRT/service-areas-and-competencies-0.9.0.circle.png]] |
!end
%/
Le référentiel du FIRST pour les PSIRTs s'appelle le ''PSIRT Framework''. Il a été défini par le groupe de travail (//SIG//) ''PSIRT Framework'' [[⇗|https://www.first.org/global/sigs/psirt/]]. [>img(50px,auto)[iCSIRT/FIRST_ico.png]]
@@color:#000091;▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬@@
<<tabs tPSIRT 'Documents' '' [[Référentiels - PSIRT##Documents]] 'Schéma' '' [[Référentiels - PSIRT##Schema]] 'Services' '' [[Référentiels - PSIRT##Services]] 'Webographie' '' [[Référentiels - PSIRT##Webographie]] >>
/%
!Documents
La version actuelle du ''PSIRT Framework'' est la v1.1 et est disponible :
* [img[English|iLang/lang_EN.gif]] en anglais : format HTML [[⇗|https://www.first.org/standards/frameworks/psirts/psirt_services_framework_v1.1]] et PDF [[⇗|https://www.first.org/standards/frameworks/psirts/FIRST_PSIRT_Services_Framework_v1.1.pdf]].
|Original : [[image ⇗|https://www.first.org/standards/frameworks/psirts/psfw_media/v1.1/image1.png]] sur la page du [[document ⇗|https://www.first.org/standards/frameworks/psirts/psirt_services_framework_v1.1]]|h
|[img(500px,auto)[iCSIRT/psirt_services_framework_v1.1-1.png]]|
!Schema
| ''PSIRT Framework'' version 1.1
Original : [[image ⇗|https://www.first.org/standards/frameworks/psirts/psfw_media/v1.1/image1.png]] sur la page du [[document ⇗|https://www.first.org/standards/frameworks/psirts/psirt_services_framework_v1.1]] |h
|[img(500px,auto)[iCSIRT/psirt_services_framework_v1.1-1.png]]|
!Services
Pour un PSIRT, les 6 ((Zones de Services(^1. Gestion de l'écosystème des parties prenantes
2. Découverte de vulnérabilités
3. Tri et analyse des vulnérabilités
4. Correction
5. Divulgation des vulnérabilités
6. Formation de la PSIRT))) et les 28 "Services" associés sont :
|>| § |Noms français des 'Zones de Services' et des 'Services' |Noms anglais des '//Service Areas//' et des '//Services//' |h
|>| !1 |!Gestion de l'écosystème des parties prenantes |!Stakeholder Ecosystem Management |
||1.1 |Gestion des parties prenantes internes |Internal Stakeholder Management |
|~|1.2 |Participation de la communauté des découvreurs |Finder Community Engagement |
|~|1.3 |Participation de la communauté et de l'organisation |Community and Organizational Engagement |
|~|1.4 |Gestion des parties prenantes en aval |Downstream Stakeholder Management |
|~|1.5 |Coordination des communications relatives aux incidents au sein de l'organisation |Incident Communications Coordination within the Organization |
|~|1.6 |Reconnaissance et distinction des découvreurs |Reward Finders with Recognition & Acknowledgement |
|~|1.7 |Mesures relatives aux parties prenantes |Stakeholder Metrics |
|>| !2 |!Découverte de vulnérabilités |!Vulnerability Discovery |
||2.1 |Recueil des rapports de vulnérabilité |Intake of Vulnerability Reporting |
|~|2.2 |Identification des vulnérabilités non signalées |Identify Unreported Vulnerabilities |
|~|2.3 |Suivi des vulnérabilités des composants des produits |Monitoring for Product Component Vulnerabilities |
|~|2.4 |Identification de nouvelles vulnérabilités |Identifying New Vulnerabilities |
|~|2.5 |Mesures relatives à la découverte de vulnérabilités |Vulnerability Discovery Metrics |
|>| !3 |!Tri et analyse des vulnérabilités |!Vulnerability Triage and Analysis |
||3.1 |Qualification des vulnérabilités |Vulnerability Qualification |
|~|3.2 |Découvreurs établis |Established Finders |
|~|3.3 |Reproduction des vulnérabilités |Vulnerability Reproduction |
|>| !4 |!Correction |!Remediation |
||4.1 |Plan de gestion de la publication d'un correctif |Remedy Release Management Plan |
|~|4.2 |Correction |Remediation |
|~|4.3 |Traitement des incidents |Incident Handling |
|~|4.4 |Mesures relatives à la communication des vulnérabilités |Vulnerability Release Metrics |
|>| !5 |!Divulgation des vulnérabilités |!Vulnerability Disclosure |
||5.1 |Notification |Notification |
|~|5.2 |Coordination |Coordination |
|~|5.3 |Divulgation |Disclosure |
|~|5.4 |Formation et apprentissage |Vulnerability Metrics |
|>| !6 |!Formation et apprentissage |!Training and Education |
||6.1 |Formation de la PSIRT |Training the PSIRT |
|~|6.2 |Formation de l'équipe de développement |Training the Development Team |
|~|6.3 |Formation de l'équipe de validation |Training the Validation Team |
|~|6.4 |Formation continue pour toutes les parties prenantes |Continuing Education for all Stakeholders |
|~|6.5 |Mise à disposition de mécanismes de retours d'informations |Provide Feedback Mechanisms |
!Webographie
|Sources|Détails|Liens|h
|FIRST|Groupe de travail (//SIG//) ''PSIRT Framework''| [[⇗|https://www.first.org/global/sigs/psirt/]] |
|FIRST|''PSIRT Framework'' version 1.1 en ''français'' (PDF)| [[⇗|https://www.first.org/standards/frameworks/psirts/FIRST_PSIRT_Services_Framework_v1.1_fr.pdf]] |
|FIRST|''PSIRT Framework'' version 1.1 en anglais (HTML)| [[⇗|https://www.first.org/standards/frameworks/psirts/psirt_services_framework_v1.1]] |
|FIRST|''PSIRT Framework'' version 1.1 en anglais (PDF)| [[⇗|https://www.first.org/standards/frameworks/psirts/FIRST_PSIRT_Services_Framework_v1.1.pdf]] |
!end
%/
!Catégories de services attendus par type d'équipe
[>img(50px,auto)[iCSIRT/FIRST_ico.png]]Fin octobre 2023, le groupe de travail (SIG) "[[CSIRT Services Framework" ⇗|https://www.first.org/standards/frameworks/]] du FIRST a publié le document de travail "[[Team Types Within the Context of Services Frameworks ⇗|https://www.first.org/standards/frameworks/csirts/team-type]]".
Il concerne plus directement 4 types d'équipes :
* Computer Security Incident Response Teams (CSIRTs)
* Information Sharing and Analysis Centers (ISACs)
* Product Security Incident Response Teams (PSIRTs)
* Security Operations Centers (SOCs)
Les terminologies employées sont basés sur les deux documents de référence suivants :
* "''CSIRT Services Framework''" v2.1 [[HTML ⇗|https://www.first.org/standards/frameworks/csirts]] / [[Français PDF ⇗|https://www.first.org/standards/frameworks/csirts/FIRST_CSIRT_Services_Framework_v2.1.0_fr.pdf]] / [[Anglais PDF ⇗|https://www.first.org/standards/frameworks/csirts/FIRST_CSIRT_Services_Framework_v2.1.0_bugfix1.pdf]]
* "''PSIRT Services Framework''" v1.1 [[HTML ⇗|https://www.first.org/standards/frameworks/psirts/psirt_services_framework_v1.1]] / [[Français PDF ⇗|https://www.first.org/standards/frameworks/psirts/FIRST_PSIRT_Services_Framework_v1.1_fr.pdf]] / [[Anglais PDF ⇗|https://www.first.org/standards/frameworks/psirts/FIRST_PSIRT_Services_Framework_v1.1.pdf]]
|Lien direct vers le ''tableau original en anglais [[⇗|https://www.first.org/standards/frameworks/csirts/team-type#4-1-Defining-Four-Basic-Incident-Management-Capabilities-or-Team-Types]]'' dans le document "''Team Types Within the Context of Services Frameworks''" (version de travail/draft 0.7.1/octobre 2023 [[⇗|https://www.first.org/standards/frameworks/csirts/team-type]])|c
| § |bgcolor:#FFFFFF;|Zones|Services|bgcolor:#FFFFFF;|Areas|Services|bgcolor:#FFFFFF;|SOC|CSIRT|PSIRT|ISAC|bgcolor:#FFFFFF;|h
| 5 |!|>|!Gestion des événements relatifs à la sécurité des informations|!|>|!Information Security Event Management|bgcolor:#000091;|||||bgcolor:#000091;|
| 5.1 |~||Surveillance et détection|~||Monitoring and Detection |~| ✔ |!|!|!|~|
| 5.2 |~||Analyse des événements|~||Event Analysis |~| ✔ |!|!|!|~|
|>|>|>|>|>|>|>|>|>|>|>|>||
| 6 |!|>|!Gestion des incidents relatifs à la sécurité des informations|!|>|!Information Security Incident Management|bgcolor:#000091;|||||bgcolor:#000091;|
| 6.1 |~||Acceptation des signalements d'incidents relatifs à la sécurité des informations|~||Information Security Incident Report Acceptance |~|!| ✔ |!|!|~|
| 6.2 |~||Analyse des incidents relatifs à la sécurité des informations|~||Information Security Incident Analysis |~|!| ✔ |!|!|~|
| 6.3 |~||Analyse des artefacts et des preuves judiciaires|~||Artifact and Forensic Evidence Analysis |~|!|!|!|!|~|
| 6.4 |~||Atténuation et reprise|~||Mitigation and Recovery |~|!| ✔ |!|!|~|
| 6.5 |~||Coordination des incidents relatifs à la sécurité des informations|~||Information Security Incident Coordination |~|!| ✔ |!|!|~|
| 6.6 |~||Appui à la gestion de crise|~||Crisis Management Support |~|!|!|!|!|~|
|>|>|>|>|>|>|>|>|>|>|>|>||
| 7 |!|>|!Gestion des vulnérabilités|!|>|!Vulnerability Management|bgcolor:#000091;|||||bgcolor:#000091;|
| 7.1 |~||Découverte/recherche de vulnérabilités|~||Vulnerability Discovery/Research |~|!|!|!|!|~|
| 7.2 |~||Recueil des rapports de vulnérabilité|~||Vulnerability Report Intake |~|!|!| ✔ |!|~|
| 7.3 |~||Analyse des vulnérabilités|~||Vulnerability Analysis |~|!|!| ✔ |!|~|
| 7.4 |~||Coordination des vulnérabilités|~||Vulnerability Coordination |~|!|!| ✔ |!|~|
| 7.5 |~||Divulgation des vulnérabilités|~||Vulnerability Disclosure |~|!|!| ✔ |!|~|
| 7.6 |~||Intervention en cas de vulnérabilité|~||Vulnerability Response |~|!|!| ✔ |!|~|
|>|>|>|>|>|>|>|>|>|>|>|>||
| 8 |!|>|!Appréciation de la situation|!|>|!Situational Awareness|bgcolor:#000091;|||||bgcolor:#000091;|
| 8.1 |~||Acquisition de données|~||Data Acquisition |~|!|!|!| ✔ |~|
| 8.2 |~||Analyse et synthèse|~||Analysis and Synthesis |~|!|!|!| ✔ |~|
| 8.3 |~||Communication|~||Communication |~|!|!|!| ✔ |~|
|>|>|>|>|>|>|>|>|>|>|>|>||
| 9 |!|>|!Transfert de connaissances|!|>|!Knowledge Transfer|bgcolor:#000091;|||||bgcolor:#000091;|
| 9.1 |~||Renforcement des connaissances|~||Awareness Building |~|!|!|!|!|~|
| 9.2 |~||Formation et apprentissage|~||Training and Education |~|!|!|!|!|~|
| 9.3 |~||Exercices|~||Exercises |~|!|!|!|!|~|
| 9.4 |~||Conseil technique et stratégique|~||Technical and Policy Advisory |~|!|!|!|!|~|
|>|>|>|>|>|>|>|>|>|>|>|>||
<<tiddler .ReplaceTiddlerTitle with: [[Référentiel : Types et Services]]>>
Quelques liens incontournables sur les SOCs (''S''ecurity ''O''perations ''C''enters) :
# MITRE : [[11 Strategies of a World-Class Cybersecurity Operations Center ⇗| https://www.mitre.org/sites/default/files/2022-04/11-strategies-of-a-world-class-cybersecurity-operations-center.pdf]]
** +++[Liste des différentes stratégies]>...
* Strategy 1: Know What You Are Protecting and Why
* Strategy 2: Give the SOC the Authority to Do Its Job
* Strategy 3: Build a SOC Structure to Match Your Organizational Needs
* Strategy 4: Hire AND Grow Quality Staff
* Strategy 5: Prioritize Incident Response
* Strategy 6: Illuminate Adversaries with Cyber Threat Intelligence
* Strategy 7: Select and Collect the Right Data
* Strategy 8: Leverage Tools to Support Analyst Workflow
* Strategy 9: Communicate Clearly, Collaborate Often, Share Generously
* Strategy 10: Measure Performance to Improve Performance
* Strategy 11: Turn up the Volume by Expanding SOC Functionality
===
# SOC Capability Maturity Model : [[SOC-CMM ⇗|https://soc-cmm.com/]]
** [[Livre Blanc ⇗|https://soc-cmm.com/downloads/soc-cmm%20whitepaper.pdf]]
** Outils d'évaluation de maturité (v2.3) [[version basique ⇗|https://soc-cmm.com/downloads/soc-cmm%202.3.4%20-%20basic.xlsx]] (format XLSX)
** Outils d'évaluation de maturité (v2.3) [[version avancée ⇗|https://soc-cmm.com/downloads/soc-cmm%202.3%20-%20advanced.xlsx]] (format XLSX)
** SOC-CMM (v2.3) et NIST Cybersecurity Framework (v2.0 et v1.1) [[tableaux de correspondance ⇗|https://soc-cmm.com/downloads/soc-cmm%202.3%20-%20advanced.xlsx]] (format XLSX)
@@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@ … <html><i class='fa fa-person-digging'</i></html> … Article en cours de rédaction … <html><i class='fa fa-person-digging'</i></html> … @@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@
@@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@ … <html><i class='fa fa-person-digging'</i></html> … Article en cours de rédaction … <html><i class='fa fa-person-digging'</i></html> … @@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@
|Sigles|Dénominations|Objectifs|Portées|Liens|h
|PACS|Prestataires d'Accompagnement et de Conseil en Sécurité des systèmes d'informations|Protéger|HOMOL, RISQUE, ARCHI|🇫🇷 [[v1.0 ⇗|https://cyber.gouv.fr/sites/default/files/document/PACS_referentiel-exigences_v1.0.pdf]] |
|PAMS|Prestataires d'Administration et de Maintenance Sécurisée|Infogérer||🇫🇷 [[v1.1 ⇗|https://cyber.gouv.fr/sites/default/files/document/ANSSI_PAMS_referentiel_v1.1_vFR.pdf]] |
|PASSI|Prestataires d'Audit de la Sécurité des Systèmes d'Information|Auditer||🇫🇷 [[v2.0 ⇗|https://cyber.gouv.fr/sites/default/files/document/PASSI_referentiel-exigences_v2.0.pdf]] |
|PDIS|Prestataires de Détection d'Incidents de Sécurité|Détecter||🇫🇷 [[v2.0[1] ⇗|https://cyber.gouv.fr/sites/default/files/2022-10/pdis_referentiel_v2.0%5B1%5D.pdf]]
🇬🇧 [[v2.0[1] ⇗|https://cyber.gouv.fr/sites/default/files/2022-10/pdis_referentiel_v2.0_en%5B1%5D.pdf]] |
|!PRIS|Prestataires de Réponse aux Incidents de Sécurité|Réagir||🇫🇷 [[v2.0[1] ⇗|https://cyber.gouv.fr/sites/default/files/2022-10/pris_referentiel_v2.0%5B1%5D.pdf]] |
|PVID|Prestataires de Vérification d'Identité à Distance|Vérifier||🇫🇷 [[v1.1⇗|https://cyber.gouv.fr/sites/default/files/document/PVID_referentiel-exigences_v1.1.pdf]] |
|SecNumCloud|Prestataires de Services Sécurisés d'Informatique en Nuage|Héberger| |🇫🇷 [[v3.2 ⇗|https://cyber.gouv.fr/sites/default/files/document/secnumcloud-referentiel-exigences-v3.2.pdf]] |
__Liens :__
* Liste des référentiels : https://cyber.gouv.fr/referentiels-dexigences-pour-la-qualification
* Liste des prestataires : https://cyber.gouv.fr/produits-services-qualifies
!!Quelques RFC liées au traitement d'incidents…
|RFC|^^Date^^|Titre / Title|Lien|Commentaires|h
|9424|^^2023.08^^|Indicators of Compromise (IoCs) and Their Role in Attack Defence| [[⇗|https://tools.ietf.org/html/rfc9424]] |
|9401|^^@@color:#606060;//2023.04.01//@@^^|@@color:#606060;//The Addition of the Death (DTH) Flag to TCP//@@| [[⇗|https://tools.ietf.org/html/rfc9401]] |
|9116|^^2022.04^^|A File Format to Aid in Security Vulnerability Disclosure //(security.txt)//| [[⇗|https://tools.ietf.org/html/rfc9116]] |
|9099|^^2021.08^^|Operational Security Considerations for IPv6 Networks| [[⇗|https://tools.ietf.org/html/rfc9099]] |
|8962|^^@@color:#606060;//2021.04.01//@@^^|@@color:#606060;//Establishing the Protocol Police//@@| [[⇗|https://tools.ietf.org/html/rfc8962]] |
|8727|^^2020.08^^|JSON Binding of the Incident Object Description Exchange Format| [[⇗|https://tools.ietf.org/html/rfc8727]] |
|8274|^^2017.11^^|Incident Object Description Exchange Format Usage Guidance| [[⇗|https://tools.ietf.org/html/rfc8274]] |
|7970|^^2016.11^^|The Incident Object Description Exchange Format Version 2| [[⇗|https://tools.ietf.org/html/rfc7970]] |^^--RFC 5070--, --RFC 6685--^^|
|7203|^^2014.04^^|An Incident Object Description Exchange Format (IODEF) Extension for Structured Cybersecurity Information| [[⇗|https://tools.ietf.org/html/rfc7203]] |
|6996|^^2013.07^^|Autonomous System (AS) Reservation for Private Use| [[⇗|https://tools.ietf.org/html/rfc6996]] |^^--RFC 1930--^^|
|6919|^^@@color:#606060;//2013.04.01//@@^^|@@color:#606060;//Further Key Words for Use in RFCs to Indicate Requirement Levels//@@| [[⇗|https://tools.ietf.org/html/rfc6919]] |
|6685|^^2012.07^^|Expert Review for Incident Object Description Exchange Format (IODEF) Extensions in IANA XML Registry| [[⇗|https://tools.ietf.org/html/rfc6685]] |^^--RFC 5070--^^|
|6684|^^2012.07^^|Guidelines and Template for Defining Extensions to the Incident Object Description Exchange Format (IODEF)| [[⇗|https://tools.ietf.org/html/rfc6684]] |
|6592|^^@@color:#606060;//2012.04.01//@@^^|@@color:#606060;//The Null Packet//@@| [[⇗|https://tools.ietf.org/html/rfc6592]] |
|6302|^^2011.06^^|Logging Recommendations for Internet-Facing Servers| [[⇗|https://tools.ietf.org/html/rfc6302]] |
|--5070--|^^2007.12^^|The Incident Object Description Exchange Format| [[⇗|https://tools.ietf.org/html/rfc5070]] |^^Voir RFC 6685^^|
|4824|^^@@color:#606060;//2007.04.01//@@^^|@@color:#606060;//The Transmission of IP Datagrams over the Semaphore Flag Signaling System (SFSS)//@@| [[⇗|https://tools.ietf.org/html/rfc4824]] |
|3631|^^2003.12^^|Security Mechanisms for the Internet| [[⇗|https://tools.ietf.org/html/rfc3631]] |
|3514|^^@@color:#606060;//2003.04.01//@@^^|@@color:#606060;//The Security Flag in the IPv4 Header//@@| [[⇗|https://tools.ietf.org/html/rfc3514]] |
|3067|^^2001.02^^|TERENA'S Incident Object Description and Exchange Format Requirements| [[⇗|https://tools.ietf.org/html/rfc3067]] |
|!2350|^^1998.06^^|!Expectations for Computer Security Incident Response| [[⇗|https://tools.ietf.org/html/rfc2350]] |
|1930|^^1996.04^^|Guidelines for creation, selection, and registration of an Autonomous System (AS)| [[⇗|https://tools.ietf.org/html/rfc1930]] |^^Voir RFC 6996^^|
|1918|^^1996.02^^|Address Allocation for Private Internets| [[⇗|https://tools.ietf.org/html/rfc1918]] |^^--RFC 1627--, --RFC 1597 --^^|
| 602|^^1973.12^^|The Stockings Were Hung by the Chimney with Care| [[⇗|https://tools.ietf.org/html/rfc602]] |
!!Quelques "standards" de l'ISO (International Standards Organisation) / OSI (Organisation de Standardisation Internationale)
|Standard|Date|Titre 🇫🇷|Title 🇬🇧|h
|[[ISO/IEC 27035|ISO - 27035]]|2023.02|Cadre relatif à la gestion des incidents en 4 parties (la dernière sera publiée en 2025)
+++[Table des matières] <<tiddler [[ISO - 27035]]>>=== |
|>|>|>|!|
!!Quelques "recommendations" de l'UIT (Union Internationale des Télécommunications 🇫🇷) / ITU (International Telecommunications Union 🇬🇧)
|Reco.|Date|Titre 🇫🇷|Title 🇬🇧|h
|X.1054|2021.04|Sécurité de l'information, cybersécurité et protection de la vie privée
– [[Gouvernance de la sécurité de l'information ⇗|https://www.itu.int/rec/T-REC-X.1054-202104-I/]]|Information security, cybersecurity and privacy protection
- [[Governance of information security ⇗|https://www.itu.int/rec/T-REC-X.1054-202104-I/en]]|
|X.1055|2011.08|[[Guide concernant la gestion des risques et les profils de risques ⇗|https://www.itu.int/rec/T-REC-X.1055-200901-I/en]]|[[Security incident management guidelines for telecommunications organizations ⇗|https://www.itu.int/rec/T-REC-X.1055-200901-I/en]]|
|X.1056|2009.01|[[Lignes directrices relatives à la gestion des incidents de sécurité dans les télécommunications ⇗|https://www.itu.int/rec/T-REC-X.1056-200901-I/fr]]|[[Security incident management guidelines for telecommunications organizations ⇗|https://www.itu.int/rec/T-REC-X.1056-200901-I/en]]|
|[[X.1060|Référentiels - ITU - X.1060]]|2021.06|[[Cadre relatif à la création et à l'exploitation d'un centre de cyberdéfense ⇗|https://www.itu.int/rec/T-REC-X.1060/fr]]
+++[Table des matières] <<tiddler [[Référentiels - ITU - X.1060 - ToC_FR]]>>=== |[[Framework for the creation and operation of a cyber defence centre ⇗|https://www.itu.int/rec/T-REC-X.1060/en]]
+++[Table des matières] <<tiddler [[Référentiels - ITU - X.1060 - ToC_EN]]>>=== |
|X.1216|2020.09|[[Exigences en matière de collecte et de conservation de preuves relatives aux incidents de cybersécurité ⇗|https://www.itu.int/rec/T-REC-X.1216-202009-I/fr]]|[[X.1216 : Requirements for collection and preservation of cybersecurity incident evidence ⇗|https://www.itu.int/rec/T-REC-X.1216-202009-I/en]]|
|X.1367|2020.09|[[Format normalisé de journaux d'erreurs pour l'Internet des objets aux fins de la gestion des incidents de sécurité ⇗|https://www.itu.int/rec/T-REC-X.1367-202009-I/fr]]|[[Standard format for Internet of things error logs for security incident operations ⇗|https://www.itu.int/rec/T-REC-X.1367-202009-I/en]]|
|>|>|>|!|
!!Autres documents
|[[WTSA-24 Draft|Référentiels - ITU - WTSA-24 Draft]]|2024|Projet d'Actes de l'Assemblée Mondiale de Noramlisation des Télécommunications AMNT-24|[[2004 World Telecommunication Standardization Assembly - Draft Proceedings|https://www.itu.int/pub/T-REG-WTSADRAFT-2024]] : voir la Résolution 58|
|~|~|[[version française ⇘|https://www.itu.int/dms_pub/itu-t/opb/reg/T-REG-WTSADRAFT-2024-PDF-F.pdf]]|[[version anglaise ⇘|https://www.itu.int/dms_pub/itu-t/opb/reg/T-REG-WTSADRAFT-2024-PDF-E.pdf]]|
||||[[Philosophy of CSIRT|https://www.itu.int/en/ITU-D/Cybersecurity/Documents/Philosophy%20of%20CSIRT.pdf]]|
||||[[CIRT Creation Stages - ITU|https://www.itu.int/en/ITU-D/Cybersecurity/Documents/Creating%20a%20CIRT.pdf]]|
||||[[CIRT framework - ITU cybersecurity programme|https://www.itu.int/dms_pub/itu-d/opb/str/D-STR-CYBERSEC-2021-01-PDF-E.pdf]]|
||2024.02||[[A successful usage of X.1060 by the industry|https://www.itu.int/en/ITU-T/Workshops-and-Seminars/2024/0222/Documents/Arnaud%20Taddei.pdf]]|
|>|>|>|!|
|9.|Processus de mise en place|
|9.1|Aperçu général|
|9.2|Niveau de recommandation des services du centre de cyberdéfense|
|9.3|Affectation des services d'un centre de cyberdéfense|
|9.4|Évaluation des services du centre de cyberdéfense|
|10.|Processus de gestion|
|11.|Processus d'évaluation|
|11.1|Aperçu général|
|11.2|Évaluation du catalogue de services du centre de cyberdéfense|
|11.3|Évaluation du profil de services du centre de cyberdéfense|
|11.4|Évaluation du portefeuille de services du centre de cyberdéfense|
|12.|Catégories de services du centre de cyberdéfense et liste de services|
|Annexe A|Liste assortie de descriptions des services d'un centre de cyberdéfense|
|A.1|Catégorie A: Gestion stratégique d'un centre de cyberdéfense|
|A.2|Catégorie B: Analyse en temps réel|
|A.3|Catégorie C: Analyse approfondie|
|A.4|Catégorie D: Réponse en cas d'incident|
|A.5|Catégorie E: Contrôle et évaluation|
|A.6|Catégorie F: Collecte, analyse et évaluation des renseignements sur les menaces|
|A.7|Catégorie G: Développement et maintenance des plates-formes du centre de cyberdéfense|
|A.8|Catégorie H: Prise en charge de l'intervention en cas de fraude interne|
|A.9|Catégorie I: Relation active avec les parties externes|
|9.|Build process|
|9.1|Overview|
|9.2|CDC service recommendation level|
|9.3|CDC service assignment|
|9.4|CDC service assessment|
|10|Management process|
|11|Evaluation process|
|11.1|Overview|
|11.2|CDC service catalogue evaluation|
|11.3|CDC service profile evaluation|
|11.4|CDC service portfolio evaluation|
|12|CDC service categories and service list|
|Annex A|CDC service list with descriptions|
|A.1|Category A: Strategic management of CDC|
|A.2|Category B: Real-time analysis|
|A.3|Category C: Deep analysis|
|A.4|Category D: Incident response|
|A.5|Category E: Checking and evaluation|
|A.6|Category F: Collection, analysis and evaluation threat intelligence|
|A.7|Category G: Development and maintenance of CDC platforms|
|A.8|Category H: Support of internal fraud response|
|A.9|Category I: Active relationship with external parties|
<<tabs tX1060 'Introduction' '' [[Référentiels - ITU - X.1060##Intro]] 'Cadre/Framework' '' [[Référentiels - ITU - X.1060##Cadre]] 'Categories' '' [[Référentiels - ITU - X.1060##Categories]] 'Services' '' [[Référentiels - ITU - X.1060##Services]] >>
/%
!Intro
<<tabs tX1060intro 'Introduction 🇫🇷' '' [[Référentiels - ITU - X.1060##IntroFR]] 'Introduction 🇬🇧' '' [[Référentiels - ITU - X.1060##IntroEN]]>>
!IntroFR
[img[Français|iLang/lang_FR.gif]] __''Recommandation ITU-T X.1060 (06/2021)''__
La Recommandation UIT-T X.1060 définit le centre de cyberdéfense (CDC) comme une entité jouant un rôle central dans le traitement des risques de cybersécurité au sein d'une organisation.
Un centre de cyberdéfense s'articule autour de trois processus – mise en place, gestion et évaluation – qu'il doit mettre en œuvre concrètement et qui en forment le cadre.
La Recommandation définit également les services qui sont nécessaires à la mise en œuvre de mesures de cybersécurité plus précises.
@@color:#E1000F;Attention : le document comporte plusieurs imprécisions et erreurs de traduction.@@
!IntroEN
__''[img[English|iLang/lang_EN.gif]] Recommendation ITU-T X.1060 (06/2021)''__
Recommendation ITU-T X.1060 defines cyber defence centre (CDC) as an entity that plays a central role in an organization to address cybersecurity risks.
The three processes of build, management and evaluation that a CDC should practically implement are described as a framework.
The services that the organization should have in order to implement more specific cybersecurity measures are also provided.
@@color:#E1000F;Caution: the document contains typos and minor errors.@@
!Cadre
<<tabs tX1060cadre 'Cadre 🇫🇷' '' [[Référentiels - ITU - X.1060##CadreFR]] 'Framework 🇬🇧' '' [[Référentiels - ITU - X.1060##CadreEN]]>>
!CadreFR
__''[img[Français|iLang/lang_FR.gif]] Cadre pour la mise en place et l'exploitation d'un centre de cyberdéfense''__
|Extrait de la Recommandation ITU-T X.1060 (06/2021) -- Figure 2|c
| Liste de services | Catalogue de services | Profil de services | Portefeuille de services |
|>|>|>| !↑→→ Processus de mise en place →→↓ |
|>| !↑←←Processus d'évaluation ←← |>| !←← Processus de gestion ←←↓ |
|>| Analyse des lacunes | Phases | Cycles |
|>| Évaluation | Gestion stratégique | Cycle long |
|>| Affectation | Exploitation | Cycle court |
|>| Niveau de recommandation | Intervention |~|
!CadreEN
__''[img[English|iLang/lang_EN.gif]] Framework for the creation and operation of a CDC''__
|Excerpt from Recommendation ITU-T X.1060 (06/2021) -- Figure 2|c
| Service list | Service catalog | Service profile | Service portfolio |
|>|>|>| !↑→→ Build process →→↓ |
|>| !↑←← Evaluation process ←← |>| !←← Management process ←←↓ |
|>| Gap analysis | Phases | Cycles |
|>| Assessment | Strategic management | Long cycle |
|>| Assignment | Operation | Short cycle |
|>| Recommendation level | Response |~|
!Categories
<<tabs tX1060categ 'Catégories 🇫🇷' '' [[Référentiels - ITU - X.1060##CategFR]] 'Categories 🇬🇧' '' [[Référentiels - ITU - X.1060##CategEN]]>>
!CategFR
__''[img[Français|iLang/lang_FR.gif]] Les catégories de service d'un centre de cyberdéfense''__
|Extrait de la Recommandation ITU-T X.1060 (06/2021) -- Table 8|c
|| !Strategic management | !Operation | !Response |
|
-- I --
Relation
active
avec les
parties
externes
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_I]]>>=== |bgcolor:#DDDDDD; -- A --
Gestion stratégique
d'un centre de cyberdéfense
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_A]]>>=== |bgcolor:#DDDDDD; -- B --
Analyse en temps réel
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_B]]>>=== |bgcolor:#DDDDDD; -- D --
Réponse en cas d'incident
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_D]]>>=== |
|~|~|bgcolor:#DDDDDD; -- C --
Analyse approfondie
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_C]]>>=== |bgcolor:#DDDDDD; -- H --
Prise en charge de l'intervention
en cas de fraude interne
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_H]]>>=== |
|~|>|>||
|~|>|>|bgcolor:#DDDDDD; -- F --
Collecte, analyse et évaluation des renseignements sur les menaces
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_F]]>>=== |
|~|>|>|bgcolor:#DDDDDD; -- E --
Contrôle et évaluation
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_E]]>>=== |
|~|>|>||
|~|>|>| -- G --
Développement et maintenance des plates-formes du centre de cyberdéfense
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_G]]>>=== |
!CategEN
__''[img[English|iLang/lang_EN.gif]] CDC service categories''__
|Excerpt from Recommendation ITU-T X.1060 (06/2021) -- Table 8|c
|| !Gestion Statégique | !Exploitation | !Réponse |
|
-- I --
Active
relationship
with
external
parties
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_I]]>>=== |bgcolor:#DDDDDD; -- A --
Strategic management of CDC
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_A]]>>=== |bgcolor:#DDDDDD; -- B --
Real-time analysis
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_B]]>>=== |bgcolor:#DDDDDD; -- D --
Incident response
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_D]]>>=== |
|~|~|bgcolor:#DDDDDD; -- C --
Deep analysis
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_C]]>>=== |bgcolor:#DDDDDD; -- H --
Support of internal fraud response
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_H]]>>=== |
|~|>|>||
|~|>|>|bgcolor:#DDDDDD; -- F --
Collection, analysis and evaluation threat intelligence
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_F]]>>=== |
|~|>|>|bgcolor:#DDDDDD; -- E --
Checking and evaluation
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_E]]>>=== |
|~|>|>||
|~|>|>| -- G --
Development and maintenance of CDC platforms
+++[détails »] <<tiddler [[Référentiels - ITU - X.1060##Serv_G]]>>=== |
!Services
__''Liste de services d'un centre de cyberdéfense''__
|Extrait de la Recommandation ITU-T X.1060 (06/2021)|c
|Catégorie|[img[Français|iLang/lang_FR.gif]]|[img[English|iLang/lang_EN.gif]]|
|!A|!Gestion stratégique d'un centre de cyberdéfense|!Strategic management of CDC|
||>|+++[Liste des services / Services List »] <<tiddler [[Référentiels - ITU - X.1060##Serv_A]]>>=== |
|!B|!Analyse en temps réel|!Real-time analysis|
||>|+++[Liste des services / Services List »] <<tiddler [[Référentiels - ITU - X.1060##Serv_B]]>>=== |
|!C|!Analyse approfondie|!Deep analysis|
||>|+++[Liste des services / Services List »] <<tiddler [[Référentiels - ITU - X.1060##Serv_C]]>>=== |
|!D|!Réponse en cas d'incident|!Incident response|
||>|+++[Liste des services / Services List »] <<tiddler [[Référentiels - ITU - X.1060##Serv_D]]>>=== |
|!E|!Contrôle et évaluation|!Checking and evaluation|
||>|+++[Liste des services / Services List »] <<tiddler [[Référentiels - ITU - X.1060##Serv_E]]>>=== |
|!F|!Collecte, analyse et évaluation des renseignements sur les menaces|!Collection, analysis and evaluation threat intelligence|
||>|+++[Liste des services / Services List »] <<tiddler [[Référentiels - ITU - X.1060##Serv_F]]>>=== |
|!G|!Développement et maintenance des plates-formes du centre de cyberdéfense|!Development and maintenance of CDC platforms|
||>|+++[Liste des services / Services List »] <<tiddler [[Référentiels - ITU - X.1060##Serv_G]]>>=== |
|!H|!Prise en charge de l'intervention en cas de fraude interne|!Support of internal fraud response|
||>|+++[Liste des services / Services List »] <<tiddler [[Référentiels - ITU - X.1060##Serv_H]]>>=== |
|!I|!Relation active avec les parties externes|!Active relationship with external parties|
||>|+++[Liste des services / Services List »] <<tiddler [[Référentiels - ITU - X.1060##Serv_I]]>>=== |
|>|!|
!Serv_A
||[img[Français|iLang/lang_FR.gif]]|[img[English|iLang/lang_EN.gif]]|h
|A-1|Gestion des risques|Risk management|
|A-2|Évaluation des risques|Risk assessment|
|A-3|Planification des politiques|Policy planning|
|A-4|Gestion des politiques|Policy management|
|A-5|Continuité d'activité|Business continuity|
|A-6|Analyse de l'impact commercial|Business impact analysis|
|A-7|Gestion des ressources|Resource management|
|A-8|Conception de l'architecture de sécurité|Security architecture design|
|A-9|Gestion des critères de triage|Triage criteria management|
|A-10|Sélection des contre-mesures|Counter measures selection|
|A-11|Gestion de la qualité|Quality management|
|A-12|Audit de sécurité|Security audit|
|A-13|Certification|Certification|
!Serv_B
||[img[Français|iLang/lang_FR.gif]]|[img[English|iLang/lang_EN.gif]]|h
|B-1|Surveillance des ressources en temps réel|Real time asset monitoring|
|B-2|Conservation des données d'incidents|Event data retention|
|B-3|Alerte et avis|Alerting and warning|
|B-4|Demande de traitement sur le rapport|Handling enquiry on report|
!Serv_C
||[img[Français|iLang/lang_FR.gif]]|[img[English|iLang/lang_EN.gif]]|h
|C-1|Analyse rétrospective|Forensic analysis|
|C-2|Analyse d'échantillon de logiciels malveillants|Malware sample analysis|
|C-3|Poursuite et suivi|Tracking and tracing|
|C-4|Collecte des preuves judiciaires|Forensic evidence collection|
!Serv_D
||[img[Français|iLang/lang_FR.gif]]|[img[English|iLang/lang_EN.gif]]|h
|D-1|Acceptation du rapport d'incidents|Incident report acceptance|
|D-2|Traitement des incidents|Incident handling|
|D-3|Classification des incidents|Incident classification|
|D-4|Réponse en cas d'incident et endiguement|Incident response and containment|
|D-5|Reprise après incident|Incident recovery|
|D-6|Notification des incidents|Incident notification|
|D-7|Rapport d'intervention en cas d'incident|Incident response report|
!Serv_E
||[img[Français|iLang/lang_FR.gif]]|[img[English|iLang/lang_EN.gif]]|h
|E-1|Collecte des informations de réseau|Network information collection|
|E-2|Inventaire des ressources|Asset inventory|
|E-3|Évaluation de la vulnérabilité|Vulnerability assessment|
|E-4|Gestion des correctifs|Patch management|
|E-5|Test d'intrusion|Penetration test|
|E-6|Évaluation de la capacité de défense contre les attaques APT|Defence capability against ATP attack evaluation|
|E-7|Évaluation de la capacité de traitement des cyberattaques|Handling capability on cyberattack evaluation|
|E-8|Conformité aux politiques|Policy compliance|
|E-9|Durcissement|Hardening|
!Serv_F
||[img[Français|iLang/lang_FR.gif]]|[img[English|iLang/lang_EN.gif]]|h
|F-1|Analyse rétrospective|Post-mortem analysis|
|F-2|Collecte et analyse des renseignements sur les menaces internes|Internal threat intelligence collection and analysis|
|F-3|Collecte et évaluation des renseignements sur les menaces externes|External threat intelligence collection and evaluation|
|F-4|Rapport relatif aux renseignements sur les menaces|Threat intelligence report|
|F-5|Utilisation des renseignements sur les menaces|Threat intelligence utilization|
!Serv_G
||[img[Français|iLang/lang_FR.gif]]|[img[English|iLang/lang_EN.gif]]|h
|G-1|Mise en œuvre de l'architecture de sécurité|Security architecture implementation|
|G-2|Exploitation de base des ressources de sécurité des réseaux|Basic operation for network security asset|
|G-3|Exploitation avancée des ressources de sécurité des réseaux|Advanced operation for network security asset|
|G-4|Exploitation de base des ressources de sécurité aux points d'extrémité|Basic operation for endpoint security asset|
|G-5|Exploitation avancée des ressources de sécurité aux points d'extrémité|Advanced operation for endpoint security asset|
|G-6|Exploitation de base des produits de sécurité en nuage|Basic operation for cloud security products|
|G-7|Exploitation avancée des produits de sécurité en nuage|Advanced operation for cloud security products|
|G-8|Fonctionnement des outils d'analyse approfondie|Deep analysis tool operation|
|G-9|Exploitation de base de la plate-forme d'analyse|Basic operation for analysis platform|
|G-10|Exploitation avancée de la plate-forme d'analyse|Advanced operation for analysis platform|
|G-11|Fonctionnement des systèmes d'un centre de cyberdéfense|Operates CDC systems|
|G-12|Évaluation des outils de sécurité existants|Existing security tools evaluation|
|G-13|Évaluation des nouveaux outils de sécurité|New security tools evaluation|
!Serv_H
||[img[Français|iLang/lang_FR.gif]]|[img[English|iLang/lang_EN.gif]]|h
|H-1|Prise en charge de l'intervention et de l'analyse en cas de fraude interne|Internal fraud response and analysis support|
|H-2|Prise en charge de la détection de la fraude interne et de la prévention des répétitions|Internal fraud detection and reoccurrence prevention support|
!Serv_I
||[img[Français|iLang/lang_FR.gif]]|[img[English|iLang/lang_EN.gif]]|h
|I-1|Sensibilisation|Awareness|
|I-2|Éducation et formation|Education and training|
|I-3|Conseils en matière de sécurité|Security consulting|
|I-4|Collaboration avec des fournisseurs de systèmes de sécurité|Security vendor collaboration|
|I-5|Service de collaboration avec des communautés externes spécialistes de la sécurité|Collaboration service with external security communities|
|I-6|Rapports techniques|Technical reporting|
|I-7|Rapports administratifs en matière de sécurité|Executive security reporting|
!end
%/
|<<tiddler [[Référentiels - ITU - WTSA-24 Draft##Res58_FR]]>>|<<tiddler [[Référentiels - ITU - WTSA-24 Draft##Res58_EN]]>>|
/%
!Res58_FR
|!RÉSOLUTION 58 (Rév. New Delhi, 2024)|
|!Encourager la création et le renforcement d'équipes nationales d'intervention en cas d'incident informatique, en particulier pour les pays en développement|
|^^Par pays en développement, on entend aussi les pays les moins avancés, les petits États insulaires en développement, les pays en développement sans littoral et les pays dont l'économie est en transition.
(Johannesburg, 2008; Dubaï, 2012; Genève, 2022; New Delhi, 2024)^^|
|L'Assemblée mondiale de normalisation des télécommunications (New Delhi, 2024),|
|//rappelant//|
|a) la Résolution 130 (Rév. Bucarest, 2022) de la Conférence de plénipotentiaires sur le renforcement du rôle de l'UIT dans l'instauration de la confiance et de la sécurité dans l'utilisation des technologies de l'information et de la communication (TIC);|
|b) que par sa Résolution 123 (Rév. Bucarest, 2022), la Conférence de plénipotentiaires a chargé le Secrétaire général et les Directeurs des trois Bureaux d'œuvrer en étroite coopération à la mise en œuvre d'initiatives permettant de réduire l'écart qui existe en matière de normalisation entre pays en développement1 et pays développés,|
|//reconnaissant//|
|a) les résultats très satisfaisants obtenus par l'approche régionale dans le cadre de la Résolution 54 (Rév. New Delhi, 2024) de la présente Assemblée;|
|b) les travaux bénéficiant d'un rang de priorité élevé menés en ce qui concerne la Résolution 50 (Rév. [New Delhi, 2024]) de l[a présente Assemblée] au sein du Secteur de la normalisation des télécommunications de l'UIT (UIT-T), conformément à ses compétences et à ses connaissances spécialisées, notamment en favorisant une compréhension commune, entre les gouvernements et les autres parties prenantes, de l'instauration de la confiance et de la sécurité dans l'utilisation des TIC aux niveaux national, régional et international;|
|c) le niveau croissant de la transformation numérique des pays en développement et leur dépendance croissante vis-à-vis des TIC;|
|d) qu'il est de plus en plus complexe de gérer les infrastructures, outils et effectifs de cyberdéfense et les services de sécurité connexes étant donné la gravité et la sophistication croissantes des cybermenaces et des cyberattaques dont les réseaux de télécommunication/TIC font l'objet dans tous les pays;|
|e) qu'à mesure que les infrastructures, les services et les technologies de télécommunication/TIC continuent d'évoluer, les cybermenaces et les cyberattaques évoluent elles aussi et se propagent par divers moyens, tels que les dispositifs mobiles, les serveurs, les réseaux et même les technologies opérationnelles;|
|f) les travaux menés par le Secteur du développement des télécommunications de l'UIT (UIT-D) dans le cadre de l'ancienne Question 22/1 de la Commission d'études 1 de l'UIT-D et l'actuelle Question 3/2 de la Commission d'études 2 de l'UIT-D sur ce sujet,|
|//notant//|
|a) que le niveau de préparation aux situations d'urgence de cybersécurité est encore peu élevé dans de nombreux pays, en particulier dans les pays en développement;|
|b) que le degré élevé d'interconnectivité des réseaux TIC pourrait être affecté en cas d'attaque lancée depuis des réseaux des pays et des régions les moins bien préparés;|
|c) qu'il est important d'avoir un niveau approprié de préparation aux situations d'urgence de cybersécurité dans tous les pays;|
|d) qu'il est nécessaire et utile de créer des équipes d'intervention en cas d'incident informatique/équipes d'intervention en cas d'incident de cybersécurité (CIRT) à l'échelle nationale, par exemple en désignant un point de contact unique pour la collaboration et la communication entre les pays et en contribuant à coordonner les différentes entités (équipes CIRT sectorielles, par exemple) au sein d'un même pays;|
|e) que, dans la mesure où les questions de cybersécurité deviennent de plus en plus complexes, il pourrait être nécessaire de faire évoluer les capacités des équipes CIRT;|
|f) que le terme d'équipe CIRT désigne un vaste ensemble d'institutions qui exercent des fonctions d'intervention en cas d'incident de cybersécurité, tels que les centres de cybersécurité (CSC), les centres des opérations de sécurité (SOC), les équipes d'intervention en cas d'urgence informatique (CERT) et les équipes d'intervention en cas d'incident de sécurité informatique (CSIRT),|
|//considérant//|
|les travaux menés par la Commission d'études 17 de l'UIT-T concernant les équipes CIRT nationales et d'autres équipes ou entités de sécurité, telles que celles visées dans la Recommandation UIT-T X.1060, en particulier pour les pays en développement, et la coopération entre ces équipes, comme indiqué dans les documents établis par cette commission d'études,|
|//ayant à l'esprit//|
|que des équipes CIRT qui fonctionnent bien dans les pays en développement permettront d'améliorer le niveau de participation de ces pays aux activités mondiales d'intervention en cas d'urgence de cybersécurité et de contribuer ainsi à obtenir une infrastructure mondiale de télécommunication/TIC efficace et sécurisée et à développer des compétences spécialisées en matière de cybersécurité,|
|//décide//|
|1 d'appuyer la création et le renforcement d'équipes CIRT nationales dans les États Membres où un appui est sollicité et de promouvoir le cadre opérationnel connexe applicable aux équipes CIRT dans les États Membres où de telles équipes sont constituées, le cas échéant,|
|2 d'encourager l'UIT-T à élaborer des outils pour aider les équipes CIRT à améliorer les échanges d'informations aux fins des interventions en cas d'incident de cybersécurité, afin d'accroître le niveau de préparation aux situations d'urgence liées à la cybersécurité, en particulier dans les pays en développement;|
|3 d'associer les bureaux régionaux de l'UIT pour ce qui est de mettre en œuvre la présente Résolution et de mieux faire connaître l'importance des équipes CIRT pour les États Membres au moyen d'activités sur cette question,|
|//charge la Commission d'études 17 du Secteur de la normalisation des télécommunications de l'UIT//|
|1 de continuer d'élaborer des Recommandations, des suppléments et, éventuellement, des outils pour la création d'équipes CIRT et de promouvoir le cadre opérationnel applicable aux équipes CIRT, que les équipes CIRT nationales du monde entier pourront utiliser pour renforcer leurs capacités;|
|2 d'étudier de manière proactive les possibilités de partenariat et de promouvoir la collaboration avec d'autres forums et organisations de normalisation pour la mise au point de ces outils;|
|3 de collaborer avec l'UIT-D dans le cadre de ses travaux sur la création et le renforcement d'équipes CIRT nationales, selon qu'il conviendra;|
|4 de promouvoir les études relatives au cadre applicable aux équipes CIRT nationales;|
|5 de fournir un appui au Directeur du Bureau de la normalisation des télécommunications (TSB) dans les initiatives visant à réduire l'écart en matière de normalisation entre les pays en développement et les pays développés en ce qui concerne les équipes CIRT nationales, qui devraient comprendre des études sur le cadre applicable aux équipes CIRT, et de communiquer les résultats de ces études aux groupes concernés de l'UIT-D dans le cadre de sa mission de commission d'études directrice pour la sécurité,|
|//charge le Directeur du Bureau de la normalisation des télécommunications//|
|de rendre compte chaque année au Groupe consultatif de la normalisation des télécommunications de la mise en œuvre de la présente Résolution,|
|//charge le Directeur du Bureau de la normalisation des télécommunications, en collaboration avec le Directeur du Bureau de développement des télécommunications//|
|1 de déterminer là où des équipes CIRT nationales sont nécessaires, en particulier dans les pays en développement, et d'encourager la création de ces équipes;|
|2 de collaborer avec des experts et des organismes internationaux, afin d'aider les pays à mettre en place des équipes CIRT nationales et à les renforcer, en améliorant et en accélérant l'élaboration de Recommandations, Suppléments et rapports techniques de l'UIT-T sur ce sujet;|
|3 d'appuyer la promotion des bonnes pratiques nationales, régionales et internationales relatives à la création d'équipes CIRT, en fournissant des Recommandations, des Suppléments et des rapports techniques;|
|4 de mieux faire connaître les produits élaborés par la Commission d'études 17 de l'UIT-T, tels que les Recommandations, les suppléments et les rapports techniques relatifs à la création et au renforcement des équipes CIRT, y compris le cadre opérationnel connexe;|
|5 de fournir un appui, selon les besoins et dans les limites des ressources budgétaires existantes;|
|6 de faciliter la collaboration entre les équipes CIRT nationales, par exemple en matière de renforcement des capacités et d'échange d'informations, dans un cadre adapté;|
|7 de prendre les mesures nécessaires pour promouvoir la mise en œuvre de la présente Résolution,|
|//invite les États Membres//|
|1 à envisager la création et le renforcement, à titre hautement prioritaire, d'une équipe CIRT nationale;|
|2 à collaborer avec les autres États Membres et avec les Membres de Secteur;|
|3 à déterminer comment les travaux de la Commission d'études 17 de l'UIT-T peuvent aider les membres de l'UIT à mieux comprendre les rôles et les responsabilités des équipes CIRT et de prendre les mesures nécessaires;|
|4 à encourager la création de réseaux de collaboration et à participer aux initiatives des organisations internationales pour renforcer, à l'échelle mondiale, les capacités en matière de cybersécurité et la collaboration aux fins des interventions en cas d'incident,|
|//invite les États Membres, les Membres de Secteur, les Associés et les établissements universitaires, selon qu'il conviendra//|
|1 à envisager de participer à l'amélioration et à l'élaboration des Recommandations, suppléments et rapports techniques pour faciliter la création et le fonctionnement efficaces des équipes CIRT nationales;|
|2 à coopérer étroitement avec l'UIT-T, l'UIT-D et les bureaux régionaux de l'UIT en la matière.|
!Res58_EN
|!RESOLUTION 58 (REV. New Delhi, 2024)|
|!Encouraging the creation and enhancement of national computer incident response teams, particularly for developing countries|
|^^These include the least developed countries, small island developing states, landlocked developing countries and countries with economies in transition.
(Johannesburg, 2008; Dubai, 2012; Geneva, 2022; New Delhi, 2024)^^|
|The World Telecommunication Standardization Assembly (New Delhi, 2024),|
|//recalling//|
|a) Resolution 130 (Rev. Bucharest, 2022) of the Plenipotentiary Conference, on strengthening the role of ITU in building confidence and security in the use of information and communication technologies (ICTs);|
|b) that Resolution 123 (Rev. Bucharest, 2022) of the Plenipotentiary Conference instructs the Secretary-General and the Directors of the three Bureaux to work closely with each other in pursuing initiatives that assist in bridging the standardization gap between developing1 and developed countries,|
|//recognizing//|
|a) the highly satisfactory results obtained by the regional approach within the framework of Resolution 54 (Rev. New Delhi, 2024) of this assembly;|
|b) the high-priority work within the ITU Telecommunication Standardization Sector (ITU-T) on Resolution 50 (Rev. [New Delhi, 2024]) of th[is assembly] on cybersecurity, carried out in accordance with its competencies and expertise, including promoting common understanding among governments and other stakeholders of how to build confidence and security in the use of ICTs at the national, regional and international levels;|
|c) the increasing level of digital transformation and dependency on ICTs within developing countries;|
|d) the increasing complexity of managing cyber defence infrastructure, tools, personnel, and security services due to the growing severity and sophistication of cyberthreats and cyberattacks on telecommunication/ICT networks in all countries;|
|e) that, as telecommunication/ICT infrastructure services and technologies continue to evolve, cyberthreats and cyberattacks are also evolving, and spreading through a variety of means, such as mobile devices, servers, networks, and even operational technology;|
|f) the work carried out by the ITU Telecommunication Development Sector (ITU-D) under former Question 22/1 of ITU-D Study Group 1 and current Question 3/2 of ITU-D Study Group 2 on this subject|
|//noting//|
|a) that there is still a low level of cybersecurity emergency preparedness within many countries, particularly developing countries; b) that the high level of interconnectivity of ICT networks could be affected by the launch of an attack from networks of the less-prepared countries and regions;|
|c) the importance of having an appropriate level of cybersecurity emergency preparedness in all countries;|
|d) the need for and benefits of the establishment of computer incident response teams/cybersecurity incident response teams/cyber incident response teams (CIRTs) on a national basis, for instance, by providing a single point of contact for collaboration and communication between countries, and for helping to coordinate different entities (e.g. sectoral CIRTs) within a country;|
|e) that, as cybersecurity issues become more complex, it may become necessary for CIRT capabilities to evolve;|
|f) that CIRT is a term that refers to a broad set of institutions that perform cybersecurity incident response functions, such as cyber security centre (CSC), security operation centre (SOC), computer emergency response team (CERT), and computer security incident response team (CSIRT),|
|//considering//|
|the work of Study Group 17 of ITU-T in the area of national CIRTs and in other security teams or entities such as those covered in Recommendation ITU-T X.1060, particularly for developing countries, and cooperation between them, as contained in the outputs of the study group,|
|//bearing in mind//|
|that well-functioning CIRTs in developing countries will serve to improve the level of developing countries' participation in global cybersecurity emergency response activities thereby contributing to achieving an effective and secure global telecommunication/ICT infrastructure and cybersecurity expertise,|
|//resolves//|
|1 to support the creation and enhancement of national CIRTs in Member States where support is requested and promote the related operating framework of CIRTs in Member States where CIRTs are established, if applicable;|
|2 to encourage ITU-T to develop tools to support CIRTs in improving information sharing for cybersecurity incident response with a view to raising the level of cybersecurity emergency preparedness, in particular in developing countries;|
|3 to engage ITU regional offices in the implementation of this resolution and raise awareness of the importance of CIRTs to Member States through related ITU-T activities,|
|//instructs Study Group 17 of the ITU Telecommunication Standardization Sector//|
|1 to continue to develop Recommendations, supplements and potentially tools that guide the creation of CIRTs and promote a CIRT operating framework that national CIRTs worldwide can use to develop their capacity;|
|2 to proactively explore partnerships and promote collaboration with other standards- development organizations and forums to develop these tools;|
|3 to collaborate with ITU-D in its work on the creation and enhancement of national CIRTs, as appropriate;|
|4 to promote the studies on national CIRT frameworks;|
|5 to support the Director of the Telecommunication Standardization Bureau (TSB) in initiatives that assist in bridging the standardization gap between developing and developed countries for national CIRTs, which should include studies on CIRT frameworks, and share results with relevant groups of ITU-D as the mission of the lead group for security,|
|//instructs the Director of the Telecommunication Standardization Bureau//|
|to inform the Telecommunication Standardization Advisory Group annually on the implementation of this resolution,|
|//instructs the Director of the Telecommunication Standardization Bureau, in collaboration with the Director of the Telecommunication Development Bureau//|
|1 to identify where national CIRTs are needed, particularly in developing countries, and encourage their establishment;|
|2 to collaborate with international experts and bodies to help countries establish and enhance national CIRTs, through improving and accelerating the development of ITU-T Recommendations, supplements and technical reports in this domain;|
|3 to support the promotion of national, regional and international best practices for establishing CIRTs by providing Recommendations, supplements and technical reports;|
|4 to raise awareness of ITU-T Study Group 17's outputs such as Recommendations, supplements and technical reports for the establishment and enhancement of CIRTs, including the related operating framework;|
|5 to provide support, as appropriate, within existing budgetary resources;|
|6 to facilitate collaboration between national CIRTs, such as capacity building and exchange of information, within an appropriate framework;|
|7 to take necessary action to progress implementation of this resolution,|
|//invites the Member States//|
|1 to consider the creation and enhancement of a national CIRT as a high priority;|
|2 to collaborate with other Member States and with Sector Members;|
|3 to consider how ITU-T Study Group 17 can inform ITU members' understanding of the roles and responsibilities of CIRTs, and take action as appropriate;|
|4 to encourage collaboration networks and participate in international organizations in order to enhance global cybersecurity capabilities and incident response collaboration,|
|//invites Member States, Sector Members, Associates and Academia, as appropriate//|
|1 to consider engaging in the improvement and development of Recommendations, supplements and technical reports in order to support the effective creation and operation of national CIRTs;|
|2 to cooperate closely with ITU-T, ITU-D and ITU regional offices in this regard.|
!end
%/
|Thèmes|Titres|Dates|Liens|h
|DNS|DNS Abuse Framework|2020.05|[[⇗ HTML|https://dnsabuseframework.org/]], [[⇗ PDF|https://dnsabuseframework.org/media/files/2020-05-29_DNSAbuseFramework.pdf]] |
|Attribution/MICTIC ((*(Malware, Infrastructure, Control Server, Telemetry, Intelligence, Cui Bono)))|[[Advanced Persistent Threats Attribution-Extending MICTIC Framework|https://thescipub.com/abstract/jcssp.2024.1403.1421]]|2024.09|[[⇗ PDF|https://thescipub.com/pdf/jcssp.2024.1403.1421.pdf]]|
|~|[[Advanced Persistent Threats (APT)-Attribution-MICTIC Framework Extension|https://thescipub.com/abstract/jcssp.2021.470.479]]|2021.05|[[⇗ PDF|https://thescipub.com/pdf/jcssp.2021.470.479.pdf]]|
|~|[[A Comprehensive Survey of Advanced Persistent Threat Attribution: Taxonomy, Methods, Challenges and Open Research Problems|https://arxiv.org/abs/2409.11415v3]]|2024.09|[[⇗ PDF|https://arxiv.org/pdf/2409.11415v3]]|
|~|[[Cyber Threat Intelligence meets the Analytic Tradecraft|https://dl.acm.org/doi/10.1145/3701299]]|2024.12|[[⇗ PDF|https://dl.acm.org/doi/pdf/10.1145/3701299]]|
|.|Lockeed Martin Cyber Kill Chain Framework|||
|.|OSSTMM ((*(Open-Source Security Testing Methodology Manual)))|||
|.|TIBER-EU ((*(Threat Intelligenge-based Ethical Red Teaming)))|||
|.|CBEST ((*(Threat Intelligenge-Led Assessments)))|||
|.|AI4CYBER framework ((*(intègre : AI4TRIAGE (Méthodes de triage des alertes pour déterminer la cause d'une attaque), AI4VUN (Identification des vulnérabilités), AI4FIX (Test des vulnérabilités et corrections automatiques), I4COLLAB (mécanisme de partage d'informations respectueux de la protection des données))))|||
|Titres|Dates|Liens|Niveaux|h
|Recovery Maturity Model from a Severe Outage|2024.11|[[$#x21D7;|https://shelteredharbor.org/maturity-model-for-recovery]]|0:Unknown, 1:Aware, 2: Progressing, 3:Prepared, 4:Resilient|
<<tabs CSIRTs 'Présentation' '' 'CSIRTs - Présentation' 'Associations de CSIRTs ' '' [[CSIRTs - Associations]] 'France ' 'FR' [[Communauté CSIRTs - France]] 'Monaco ' 'MC' [[Communauté CSIRTs - Monaco]] 'Belgique ' 'BE' [[Communauté CSIRTs - Belgique]] 'CSIRTs Francophones ' 'BE' [[Communauté CSIRTs - Francophones]] 'CSIRTs Gouvernementaux et Nationaux ' '' 'Communauté CSIRTs - Gouvernementaux ou Nationaux'>>
Cet article présente les différents CSIRTs, Liaisons et associations ou groupes de CSIRTs en France et dans différents pays dans le monde.
|<<tiddler [[CSIRTs - Présentation - Pays]]>>
<<tiddler [[CSIRTs - Présentation - Groupes]]>> |<<tiddler [[CSIRTs - Avancement - Site]]>> |
À date (''<<tiddler [[f_MA]]>>''), le site contient ''<<tiddler f_NbAllny with: 'Any' '_C","_P","_L","_A","_I","_K'>>'' références :
* ''<<tiddler f_NbAllny with: 'Any' '_C'>>'' CSIRTs+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_C'>>}}}=== • ''<<tiddler f_NbAllny with: 'Any' '_P'>>'' PSIRTs+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_P'>>}}}=== • ''<<tiddler f_NbAllny with: 'Any' '_L'>>'' Liaisons+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_L'>>}}}===
* ''<<tiddler f_NbAllny with: 'Any' '_A'>>'' Associations+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_A'>>}}}=== • ''<<tiddler f_NbAllny with: 'All' '_F'>>'' Fondations+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_F'>>}}}=== • ''<<tiddler f_NbAllny with: 'All' '_I'>>'' ISACs+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_I'>>}}}===
* ''<<tiddler f_NbAllny with: 'Any' '_K'>>'' Communautés Nationales ou Continentales+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_K'>>}}}===
* ''<<tiddler f_NbAllny with: 'Any' '_N'>>'' CSIRTs Gouvernementaux ou Nationaux+++[»]...{{ss2col{<<tiddler f_GoAllny with: 'All' '_N'>>}}}===
----
À jour (👍) :
* 🇫🇷 [[InterCERT France|Association - FR - InterCERT France]] : les ''<<tiddler f_NbAllny with: 'Any' 'aFR_'>>'' CSIRTs et Liaisons membres
* 🇳🇱 [[CERT.nl|Association - NL - CERT.nl]] : les ''<<tiddler f_NbAllny with: 'Any' 'aNL_'>>'' CSIRTs membres
* 🇱🇺 [[cert.lu|Association - LU - cert.lu]] : les ''<<tiddler f_NbAllny with: 'Any' 'aLU_'>>'' CSIRTs membres
* 🇸🇪 ''Svenskt CERT-forum'' : les ''<<tiddler f_NbAllny with: 'Any' 'aSE_'>>'' CSIRTs membres
* 🇪🇸 [[CSIRT.es|Association - ES - CSIRT.es]] : les ''<<tiddler f_NbAllny with: 'All' 'aES_'>>'' CSIRTs membres
* 🇦🇹 ''CERT-Verbund'' : les ''<<tiddler f_NbAllny with: 'All' 'aAT_'>>'' CSIRTs membres
* 🇩🇪 ''CERT-Verbund'' : les ''<<tiddler f_NbAllny with: 'All' 'aDE_'>>'' CSIRTs membres
* ''AfricaCERT'' : les ''<<tiddler f_NbAllny with: 'Any' '44_'>>'' CSIRTs
* ''TrustBroker Africa'' : les ''<<tiddler f_NbAllny with: 'Any' '47_'>>'' CSIRTs
----
En cours de mise à jour …
* [[FIRST|Association - FIRST]] : ''<<tiddler f_NbAllny with: 'Any' '1T_","1P_'>>''/<<tiddler [[Association - FIRST::q]]>> CSIRTs et Liaisons membres
* [[TF-CSIRT|Association - TF-CSIRT]] : ''<<tiddler f_NbAllny with: 'Any' '7T_","7P_'>>''/<<tiddler [[Association - TF-CSIRT::q]]>> CSIRTs et Associates membres
** ''<<tiddler f_NbAllny with: 'All' '7_","7C_'>>''/<<tiddler [[Association - TF-CSIRT::QtC]]>> //Certified// • ''<<tiddler f_NbAllny with: 'All' '7_","7A_'>>''/<<tiddler [[Association - TF-CSIRT::QtA]]>> //Accredited//
** ''<<tiddler f_NbAllny with: 'All' '7_","7P_'>>''/<<tiddler [[Association - TF-CSIRT::QtL]]>> //Listed// • ''<<tiddler f_NbAllny with: 'All' '7_","7P_'>>''/<<tiddler [[Association - TF-CSIRT::QtP]]>> //Associates//
* 🇯🇵 [[NCA|Association - JP - NCA]] : ''<<tiddler f_NbAllny with: 'All' 'aJP_'>>''/<<tiddler [[Association - JP - NCA::q]]>> CSIRTs membres
----
Il reste environ 1.700 éléments à intégrer sur ce site pour référencer tous les CSIRTs, PSIRTs, ISACs …
🇫🇷 __[[France|Communauté CSIRTs - France]] :__ ''<<tiddler f_NbAllny with: 'Any' 'FRS_","33R_","FRO_","FRI_","FRE_","FRP_","FRZ_","FR_0_'>>'' [[CSIRTs|Communauté CSIRTs - France]]^^(<<tiddler f_NbAllny with: 'Any' 'FRS_","33R_","FRO_","FRI_","FRE_","FRZ_","FR_0_'>>)^^ et [[personnes|Communauté CSIRTs - France]]^^(<<tiddler f_NbAllny with: 'Any' 'FRP_'>>)^^
* [[Annuaire|CSIRTs - France - Panorama]] : Membres [[FIRST|CSIRTs - FR - FIRST]]^^(<<tiddler f_NbAllny with: 'All' 'FR_","1_'>>)^^, [[TF-CSIRT|CSIRTs - FR - TF-CSIRT]]^^(<<tiddler f_NbAllny with: 'All' 'FR_","7_'>>)^^
* Membres [[InterCERT-France|Association - FR - InterCERT France]]^^(<<tiddler [[Association - FR - InterCERT France::q]]>>)^^, //[[autres|CSIRTs - FR - InterCERT France - Non Membres]]//^^(<<tiddler f_NbAllny with: 'Any' '330_'>>)^^
* [[CSIRTs Sectoriels|CSIRTs - FR - Sectoriel]]^^(<<tiddler f_NbAllny with: 'Any' 'FRS_'>>)^^, [[Régionaux|CSIRTs - FR - Régional]]^^(<<tiddler f_NbAllny with: 'Any' '33R_'>>)^^ • [[PSIRTs|CSIRTs - FR - PSIRTs]]^^(<<tiddler f_NbAllny with: 'All' 'FR_P_'>>)^^
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
🇲🇨 [[Monaco|Communauté CSIRTs - Monaco]] • 🇧🇪 [[Belgique|Communauté CSIRTs - Belgique]] • 🇱🇺 [[Luxembourg|Communauté CSIRTs - Luxembourg]]
🇨🇭 [[Suisse|Communauté CSIRTs - Suisse]] • 🇳🇱 [[Pays-Bas|Communauté CSIRTs - Pays-Bas]] • 🇸🇪 [[Suède|Communauté CSIRTs - Suède]] • 🇪🇸 [[Espagne|Communauté CSIRTs - Espagne]]
🇩🇪 [[Allemagne|Communauté CSIRTs - Allemagne]] • 🇦🇹 [[Autriche|Communauté CSIRTs - Autriche]] • 🇯🇵 [[Japon|Communauté CSIRTs - Japon]]
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
__[[Liste d'associations internationales|CSIRTs - Associations]]__ de CSIRTs
* [[FIRST|Association - FIRST]] ^^(<<tiddler [[Association - FIRST::q]]>>)^^, [[TF-CSIRT|Association - TF-CSIRT]] ^^(<<tiddler [[Association - TF-CSIRT::q]]>>)^^
* [[CSIRTs Network|Association - CSIRTs Network]]^^(<<tiddler f_NbAllny with: 'Any' '75_'>>)^^, [[EGC Group|Association - EGC Group]]^^(<<tiddler f_NbAllny with: 'Any' '76_'>>)^^
* [[AfricaCERT|Association - AfricaCERT]]^^(<<tiddler f_NbAllny with: 'Any' '44_'>>)^^, [[TrustBroker Africa|Association - TrustBroker Africa]]^^(<<tiddler f_NbAllny with: 'Any' '47_'>>)^^
* [[CSIRTAmericas Network|Association - CSIRTAmericas Network]]^^(<<tiddler f_NbAllny with: 'Any' '41_'>>)^^, [[PaCSON|Association - PaCSON]]^^(<<tiddler f_NbAllny with: 'Any' '49_'>>)^^
* [[OIC-CERT|Association - OIC-CERT]]^^(<<tiddler f_NbAllny with: 'Any' '99_'>>)^^
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
__[[Liste d'associations nationales|CSIRTs - Associations]]__ de CSIRTs
* 🇫🇷 [[InterCERT France|Association - FR - InterCERT France]]^^(<<tiddler [[Association - FR - InterCERT France::q]]>>)^^
* 🇳🇱 [[CERT.nl|Association - NL - CERT.nl]]^^(<<tiddler f_NbAllny with: 'Any' 'aNL_'>>)^^, 🇱🇺 [[cert.lu|Association - LU - cert.lu]]^^(<<tiddler f_NbAllny with: 'Any' 'aLU_'>>)^^
* 🇪🇸 [[CSIRT.es|Association - ES - CSIRT.es]]^^(<<tiddler f_NbAllny with: 'Any' 'aES_'>>)^^ * 🇸🇪 [[Svenskt CERT-Forum|Association - SE - Svenskt CERT-Forum]]^^(<<tiddler f_NbAllny with: 'Any' 'aSE_'>>)^^
* 🇩🇪 [[CERT-Verbund|Association - DE - CERT-Verbund]]^^(<<tiddler f_NbAllny with: 'Any' 'aDE_'>>)^^ • 🇦🇹 [[CERT-Verbund AT|Association - AT - CERT-Verbund Austria]]^^(<<tiddler f_NbAllny with: 'Any' 'aAT_'>>)^^
* 🇨🇭 [[Swiss CSIRT Forum|Association - CH - Swiss CSIRT Forum]]^^(?)^^
* 🇯🇵 [[NCA|Association - JP - NCA]]^^(<<tiddler [[Association - JP - NCA::q]]>>)^^
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Autres listes :
* CSIRTs [[gouvernementaux/nationaux|Communauté CSIRTs - Gouvernementaux ou Nationaux]]^^(<<tiddler f_NbAllny with: 'Any' '_N'>>)^^
* Par continents : [[Afrique|Communauté CSIRTs - Afrique]]^^(<<tiddler f_NbAllny with: 'Any' 'af_'>>)^^, @@color:#888888;Asie,@@ [[Océanie|Communauté CSIRTs - Océanie]]^^(<<tiddler f_NbAllny with: 'Any' 'oc_'>>)^^
Amériques [[Nord|Communauté CSIRTs - Amérique du Nord]]^^(<<tiddler f_NbAllny with: 'Any' 'na_'>>)^^ / [[Centrale|Communauté CSIRTs - Amérique Centrale]]^^(<<tiddler f_NbAllny with: 'Any' '58_'>>)^^ / [[Sud|Communauté CSIRTs - Amérique du Sud]]^^(<<tiddler f_NbAllny with: 'Any' '59_'>>)^^
* ''ISACs''^^(<<tiddler f_NbAllny with: 'Any' 'EU__I","NL__I","81_","81_0_","AU__I","JP__I","SG__I'>>)^^ en [[Europe|ISACs - EU]]^^(<<tiddler f_NbAllny with: 'Any' 'EU__I'>>)^^ : [[Pays-Bas|ISACs - NL]]^^(<<tiddler f_NbAllny with: 'Any' 'NL__I'>>)^^
Amérique du Nord^^(<<tiddler f_NbAllny with: 'Any' '81_","81_0_","82_'>>)^^ : [[États-Unis|ISACs - US]]^^(<<tiddler f_NbAllny with: 'Any' '81_","81_0_'>>)^^, [[Canada|ISACs - CA]]^^(<<tiddler f_NbAllny with: 'Any' '82_'>>)^^
Asie/Océanie : [[Australie|ISACs - AU]]^^(<<tiddler f_NbAllny with: 'Any' 'AU__I'>>)^^, [[Japon|ISACs - JP]]^^(<<tiddler f_NbAllny with: 'Any' 'JP__I'>>)^^, [[Singapour|ISACs - SG]]^^(<<tiddler f_NbAllny with: 'Any' 'SG__I'>>)^^
* Noms de domaines et DNS : [[CENTR|Association - CENTR]]
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
<<tabs Csirts 'Panorama' '' [[CSIRTs - France - Panorama]] 'Alphabétique' '' [[CSIRTs - France - Alphabetique]] 'InterCERT France' 'Liste détaillée des membres de l\'InterCERT France' [[Association - FR - InterCERT France]] 'Sectoriels' 'Liste détaillée des CSIRTs sectoriels' [[CSIRTs - FR - Sectoriel]] 'Régionaux' 'Liste détaillée des CSIRTs régionaux' [[CSIRTs - FR - Régional]] 'Institutionnels' 'Liste détaillée des CSIRTs institutionnels' [[CSIRTs - FR - Institutionnel]] 'Internes' 'Liste détaillée des CSIRTs internes' [[CSIRTs - FR - Interne]] 'Externes' 'Liste détaillée des CSIRTs externes' [[CSIRTs - FR - Externe]] 'Autres CSIRTs' 'Liste détaillée des autres CSIRTs' [[CSIRTs - FR - Autres]] 'Personnes' 'Liste détaillée des membres Liaisons' [[CSIRTs - FR - Personne]] 'FIRST' 'Liste détaillée de tous les membres du FIRST' [[CSIRTs - FR - FIRST]] 'TF-CSIRT' 'Liste détaillée de tous les membres de la TF-CSIRT ' [[CSIRTs - FR - TF-CSIRT]] 'Tous' 'Liste détaillée de tous les CSIRTs ' [[CSIRTs - FR - Tous]]>>
/%
|n|France|
%/
<<tiddler f_Cc2_C with: 'FR' 'France' 'fr' 'InterCERT France'>>
![>img[iCC/fr.png]]France - Répartition par catégories des <<tiddler f_NbAllny with: 'Any' 'FRS_","33R_","FRO_","FRI_","FRE_","FRZ_","FR_0_'>> CSIRTs et <<tiddler f_NbAllny with: 'Any' 'FRP_'>> personnes affiliées/Liaisons
|>|↓Catégories //vs.// Membre→|>| [[Tous|CSIRTs - FR - Tous]] |>| [[InterCERT|Association - FR - InterCERT France]]
[[France|Association - FR - InterCERT France]] |>| [[TF-CSIRT|CSIRTs - FR - TF-CSIRT]] |>| [[FIRST|CSIRTs - FR - FIRST]] |h
|Toutes catégories|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRS_","33R_","FRO_","FRI_","FRE_","FRP_","FRZ_","FR_0_'>>}}}===| ''<<tiddler f_NbAllny with: 'Any' 'FRS_","33R_","FRO_","FRI_","FRE_","FRP_","FRZ_","FR_0_'>>'' |+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRS_","33R_","FRO_","FRI_","FRE_","FRP_","FRZ_","FR_0_'>>}}}===| ''<<tiddler [[Association - FR - InterCERT France::q]]>>''|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' '33S_","33R_","33O_","33I_","33E_","33P_'>>}}}===| ''<<tiddler f_NbAllny with: 'All' 'FR_","7_'>>''|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'All' 'FR_","7_'>>}}}===| ''<<tiddler f_NbAllny with: 'All' 'FR_","1_'>>''|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'All' 'FR_","1_'>>}}}===|
|>|>|>|>|>|>|>|>|>|!|
|[[CSIRTs sectoriels|CSIRTs - FR - Sectoriel]]|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRS_'>>}}}===| <<tiddler f_NbAllny with: 'Any' 'FRS_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRS_'>>}}}===| ^^(<<tiddler f_NbAllny with: 'Any' '33S_'>>)^^|+++[»]...|Répartis entre les catégories "Institutionnel" et "Externe"
{{ss2col{<<tiddler f_UlAllny with: 'Any' '33S_'>>}}}===| <<tiddler f_NbAllny with: 'All' 'FRS_","7_'>>|+++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' 'FRS_","7_'>>}}}===| <<tiddler f_NbAllny with: 'All' 'FRS_","1T_'>>|+++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' 'FRS_","1T_'>>}}}===|
|[[CSIRTs régionaux|CSIRTs - FR - Régional]]|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' '33R_'>>}}}===| <<tiddler f_NbAllny with: 'Any' '33R_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' '33R_'>>}}}===| ^^(<<tiddler f_NbAllny with: 'Any' '33R_'>>)^^|+++[»]...|Dans la catégorie "Externe"
{{ss2col{<<tiddler f_UlAllny with: 'Any' '33R_'>>}}}===| <<tiddler f_NbAllny with: 'All' '33R_","7_'>>|+++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '33R_","7_'>>}}}===| <<tiddler f_NbAllny with: 'All' '33R_","1T_'>>|+++[»]...{{ss2col{<<tiddler f_UlAllny with: 'All' '33R_","1T_'>>}}}===|
|[[CSIRTs institutionnels|CSIRTs - FR - Institutionnel]]|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRO_'>>}}}===| <<tiddler f_NbAllny with: 'Any' 'FRO_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRO_'>>}}}===| <<tiddler f_NbAllny with: 'Any' '33O_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' '33O_'>>}}}===| <<tiddler f_NbAllny with: 'All' 'FRO_","7_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'All' 'FRO_","7_'>>}}}===| <<tiddler f_NbAllny with: 'All' 'FRO_","1T_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'All' 'FRO_","1T_'>>}}}===|
|[[CSIRTs internes|CSIRTs - FR - Interne]]|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRI_'>>}}}===| <<tiddler f_NbAllny with: 'Any' 'FRI_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRI_'>>}}}===| <<tiddler f_NbAllny with: 'Any' '33I_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' '33I_'>>}}}===| <<tiddler f_NbAllny with: 'All' 'FRI_","7_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'All' 'FRI_","7_'>>}}}===| <<tiddler f_NbAllny with: 'All' 'FRI_","1T_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'All' 'FRI_","1T_'>>}}}===|
|[[CSIRTs externes|CSIRTs - FR - Externe]]|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRE_'>>}}}===| <<tiddler f_NbAllny with: 'Any' 'FRE_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRE_'>>}}}===| <<tiddler f_NbAllny with: 'Any' '33E_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' '33E_'>>}}}===| <<tiddler f_NbAllny with: 'All' 'FRE_","7_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'All' 'FRE_","7_'>>}}}===| <<tiddler f_NbAllny with: 'All' 'FRE_","1T_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'All' 'FRE_","1T_'>>}}}===|
|Autres CSIRTs|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRZ_'>>}}}===| <<tiddler f_NbAllny with: 'Any' 'FRZ_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRZ_'>>}}}===| ^^(<<tiddler f_NbAllny with: 'Any' '33Z_'>>)^^|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' '33Z_'>>}}}===| <<tiddler f_NbAllny with: 'All' 'FRZ_","7_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'All' 'FRZ_","7_'>>}}}===| <<tiddler f_NbAllny with: 'All' 'FRZ_","1T_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'All' 'FRZ_","1T_'>>}}}===|
|[[Liaisons|CSIRTs - FR - Personne]] ^^//ad personam//^^|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRP_'>>}}}===| <<tiddler f_NbAllny with: 'Any' 'FRP_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRP_'>>}}}===| <<tiddler f_NbAllny with: 'Any' '33P_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'Any' '33P_'>>}}}===| <<tiddler f_NbAllny with: 'All' 'FRP_","7_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'All' 'FRP_","7_'>>}}}===| <<tiddler f_NbAllny with: 'All' 'FRP_","1P_'>>|+++[»]...{{ss3col{<<tiddler f_UlAllny with: 'All' 'FRP_","1P_'>>}}}===|
|>|>|>|>|>|>|>|>|>|!|
| Liens directs| ⇒ |>| ^^[[Tous|CSIRTs - FR - Tous]]^^ |>| ^^[[InterCERT|Association - FR - InterCERT France]] [[France|Association - FR - InterCERT France]]^^ |>| ^^[[TF-CSIRT|CSIRTs - FR - TF-CSIRT]]^^ |>| ^^[[FIRST|CSIRTs - FR - FIRST]]^^ |
|>|>|>|>|>|>|>|>|>|!|
|>|>|>|>|>|>|>|>|>|<<tiddler [[CSIRTs - FR - Anciens]]>> |
|>|>|>|>|>|>|>|>|>|<<tiddler [[CSIRTs - FR - Parrains]]>> |
<<tabs AlphaB 'CSIRTs actifs' '' [[CSIRTs - France - Alphabetique##CSIRTs]] 'Personnes ou Liaisons actives' '' [[CSIRTs - France - Alphabetique##Liaisons]] 'CSIRTs non actifs ou indéterminés' '' [[CSIRTs - France - Alphabetique##Inactifs]]>>
/%
!CSIRTs
__''Répartition par ordre alphabétique des <<tiddler f_NbAllny with: 'Any' 'FRS_","33R_","FRO_","FRI_","FRE_","FRZ_","FR_0_'>> CSIRTs actifs''__
{{ss4col{<<forEachTiddler where 'tiddler.tags.containsAny(["FRS_","33R_","FRO_","FRI_","FRE_","FRZ_"])' sortBy 'tiddler.title.toUpperCase()' script 'function getGroupCaption(tiddler) { return tiddler.title.substr(13,1).toUpperCase(); } function getGroupTitle(tiddler, context) { if (!context.lastGroup || context.lastGroup != getGroupCaption(tiddler)) { context.lastGroup = getGroupCaption(tiddler); return "* __\'\'"+(context.lastGroup?context.lastGroup:"no tags")+"…\'\'__\n"; } else return ""; }' write 'getGroupTitle(tiddler, context)+"** [[" + tiddler.title.substr(13)+"|"+tiddler.title+"]]^^+++^*[»]... \<\<tiddler [["+tiddler.title+"]]\>\> ===^^\n"'>>}}}
!Liaisons
__''Répartition par ordre alphabétique des <<tiddler f_NbAllny with: 'Any' 'FRP_'>> personnes affiliées/Liaisons actives''__
{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FRP_'>>}}}
!Inactifs
__''Répartition par ordre alphabétique de <<tiddler f_NbAllny with: 'Any' 'FR_0_","33R_0_'>> autres CSIRTs''__
CSIRTs pour lesquels aucune information pertinente n'est disponible en source ouverte. Ils sont donc considérés comme étant :
* soit inactifs
* soit en projets ou en cours de création
* soit avec un statut indéfini
{{ss3col{<<tiddler f_UlAllny with: 'Any' 'FR_0_","33R_0_'>>}}}
!end
%/
!!Ecosystème de l'InterCERT France
<<tabs InterCERT_FR 'Panorama' '' [[CSIRTs - France - Panorama - InterCERT France]] 'CSIRTs Sectoriels' '' [[CSIRTs - FR - InterCERT France - Sectoriel]] 'CSIRTs Régionaux' '' [[CSIRTs - FR - InterCERT France - Régional]] 'CSIRTs Institutionnels' '' [[CSIRTs - FR - InterCERT France - Institutionnel]] 'CSIRTs Internes' '' [[CSIRTs - FR - InterCERT France - Interne]] 'CSIRTs Externes' '' [[CSIRTs - FR - InterCERT France - Externe]] 'Liaisons' '' [[CSIRTs - FR - InterCERT France - Liaison]] 'Tous' '' [[CSIRTs - FR - InterCERT France - Tous]] 'NON membres' '' [[CSIRTs - FR - InterCERT France - Non Membres]]>>/%
|Bss|-|
|b|-|
|cct|fr|
|CTI|-|
|c|~2003|
|d|FR|
|f|🇫🇷|
|g|[[⇗|https://github.com/intercert-france/]]|
|IOC|-|
|L|[[⇗|https://www.linkedin.com/company/intercert-france/posts/?feedView=all]]|
|l|[[⇗|https://www.linkedin.com/company/intercert-france/]]|
|Mdm|-|
|Mem|[[⇗|https://www.intercert-france.fr/membres/]]|
|Mtd|-|
|Nws|-|
|n|InterCERT France|
|Pay|France|
|Png|[[⇗|https://www.intercert-france.fr/contact/]]|
|qE|<<tiddler f_NbAllny with: 'All' '33E_'>>|
|qI|<<tiddler f_NbAllny with: 'All' '33I_'>>|
|qO|<<tiddler f_NbAllny with: 'All' '33O_'>>|
|qP|<<tiddler f_NbAllny with: 'All' '33P_'>>|
|qR|<<tiddler f_NbAllny with: 'All' '33R_'>>|
|qS|<<tiddler f_NbAllny with: 'All' '33S_'>>|
|q|<<tiddler f_NbAllny with: 'All' 'aFR_'>>|
|Rpt|-|
|§|InterCERT France|
|Tot|<<tiddler f_NbAllny with: 'All' 'FR_'>>|
|Tru|10|
|Twi|-|
|u|[[⇗|https://www.intercert-france.fr/]]|
|You|-|
|z|eu|
%/
!Historique
[>img(auto,80px)[iCSIRT/Assoc_FR.png]]''InterCERT'' était le nom donné à un regroupement informel de CSIRTs au début des années 2000 et regroupait les premiers CSIRTs français sous l'égide de la DCSSI ^^((*(→ devenue ANSSI en 2009)))^^.
Les 5 premiers membres : CERTA ^^((*(→ devenu CERT-FR en 2014)))^^, CERT RENATER, CERT-IST, CERT Lexsi ^^((*(→ devenu CERT OCD en 2016)))^^, +++^*@[APOGEE SecWatch] [img(auto,100px)[i/APOGEE-Communications.png]] === ^^((*(→ devenu CERT Devoteam en 2004)))^^.
* __Début des années 2010 :__ le groupe qui est toujours informel, est renommé en ''InterCERT-FR''.
* __Début 2014 :__ sous l'impulsion du CERT-FR, les réunions deviennent plus régulières, le réseau se structure et se dote d'une charte des membres et de règles organisationnelles avec la création de 2 collèges : "CSIRTs internes" et "CSIRTs externes". Puis un troisième collège est créé : "CSIRTs institutionnels" qui regroupe ceux de l'Administration, de Ministères …
* __En 2017 :__ un Comité de Pilotage est créé. Il est composé du CERT-FR, et de 6 membres élus, 2 pour chacun des 3 collèges.
* __26 octobre 2021 :__ l'Association ''InterCERT France'' est +++^*@{{cssBold{[créée]}}} <<tiddler [[Association - FR - InterCERT France - Creation]]>> === afin pour pérenniser la structure et de se développer.
* __En 2024 :__ l'Association dépasse la barre symbolique des 100 membres
<<tiddler f_CcAss with: 'InterCERT France' 'FR' 'France' 'Association - FR - InterCERT France' '-' 'est une association qui vise à améliorer la coopération entre les CSIRTs opérant en France.'>>
<<tiddler f_Cc2_1 with: 'FR' 'France' 'fr' 'InterCERT France'>>
[>img(auto,80px)[iCSIRT/Assoc_FR.png]]En France, les ''<<tiddler f_NbAllny with: 'Any' '33O_","33I_","33E_","33P_'>>'' membres et Liaisons de l'InterCERT France sont répartis en plusieurs catégories :
{{ss2col{
* ''<<tiddler f_NbAllny with: 'Any' '33S_'>>'' CSIRTs Sectoriels ^^(répartis dans les catégories "Institutionnel" et "Externe")^^
* ''<<tiddler f_NbAllny with: 'Any' '33R_'>>'' CSIRTs Régionaux ^^(répartis dans la catégorie "Externe")^^
* ''<<tiddler f_NbAllny with: 'Any' '33O_'>>'' CSIRTs Institutionnels
* ''<<tiddler f_NbAllny with: 'Any' '33I_'>>'' CSIRTs internes
* ''<<tiddler f_NbAllny with: 'Any' '33E_'>>'' CSIRTs externes
* ''<<tiddler f_NbAllny with: 'Any' '33P_'>>'' membres //Liaison// à titre personnel
}}}^^__ __
* Au moins ''<<tiddler f_NbAllny with: 'Any' '33Z_'>>'' membres ou liaisons de l'InterCERT France ont choisi de ne pas être mentionnés.
* Au moins ''<<tiddler f_NbAllny with: 'Any' '330_'>>'' équipes ou personnes faisant partie de la communauté des CSIRTs et basées en France n'en sont pas (encore) membres.
* Journal Officiel : création de l'association InterCERT FRANCE +++[détails »]> <<tiddler [[Association - FR - InterCERT France - Creation]]>> === ^^
|ssTabl49|k
|Annonce JOAFE|https://www.journal-officiel.gouv.fr/pages/associations-detail-annonce/?q.id=id:202100431994 |
|Parution au Journal Officiel|26 octobre 2021|
|Numéro RNA|W922018962|
|N° de parution|20210043|
|N° d'annonce|1994|
|Objet|l'Association a pour objet de constituer et pérenniser un réseau d'organisations ayant des activités de réponse à un incident d'origine cyber (souvent dénommés CERT, Computer Emergency Response Team, ou CSIRT, Computer Security Incident Response Team) sur le territoire français|
|Date de déclaration|22 octobre 2021|
|Lieu de déclaration|Préfecture Hauts-de-Seine|
|Justificatif de publication|https://compte.journal-officiel.gouv.fr/pages/verification_pdf/?source=jo_associations&q=id:202100431994 |
<<tiddler f_TabFR with: 'FRS_' 'CSIRTs Sectoriels' 'Any' 'fr' 'France' 'Secteur'>>
<<tiddler .ReplaceTiddlerTitle with: [[France - Les CSIRTs sectoriels]]>>
<<tiddler f_TabFR with: 'FR_P_' 'PSIRTs' 'Any' 'fr' 'France' 'Société/Produits'>>
<<tiddler .ReplaceTiddlerTitle with: [[France - Les PSIRTs ]]>>
<<tiddler f_TabFR with: '33R_' 'CSIRTs Régionaux' 'Any' 'fr' 'France' 'Région'>>
<<tiddler f_TabFR with: '33R_0_' 'CSIRTs régionaux en cours de création' 'Any' 'fr' 'France' 'Région'>>
<<tiddler .ReplaceTiddlerTitle with: [[France - Les CSIRTs régionaux actifs ou en cours de création]]>>
<<tiddler f_TabFR with: 'FRP_' 'Personnes Affiliées' 'Any' 'fr' 'France' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[France - Les personnes affiliées et/ou Liaisons]]>>
<<tiddler f_TabFR with: 'FRO_' 'CSIRTs Institutionnels' 'Any' 'fr' 'France' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[France - Les CSIRTs Institutionnels]]>>
<<tiddler f_TabFR with: 'FRI_' 'CSIRTs Internes' 'Any' 'fr' 'France' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[France - Les CSIRTs internes]]>>
<<tiddler f_TabFR with: 'FRE_' 'CSIRTs Externes / Commerciaux / Offreurs de Services' 'Any' 'fr' 'France' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[France - Les CSIRTs externes et/ou d\'Offreurs de services CSIRT]]>>
<<tiddler f_TabFR with: 'FRZ_' 'Autres CSIRTs' 'Any' 'fr' 'France' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[France - Les autres CSIRTs]]>>
<<tiddler f_TabFR with: 'FRS_","33R_","FRO_","FRI_","FRE_","FRP_","FRZ_","FR_0_' 'Tous les CSIRTs et Personnes Affiliées/Liaisons' 'Any' 'fr' 'France' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[France - Tous les CSIRTs et personnes affiliées/Liaisons]]>>
<<tiddler f_TabFR with: '33S_' 'CSIRTs Sectoriels' 'Any' 'fr' 'Membres de l\'InterCERT France' 'Secteur'>>
<<tiddler .ReplaceTiddlerTitle with: [[Membres de InterCERT France - CSIRTs Sectoriels]]>>
<<tiddler f_TabFR with: '33R_' 'CSIRTs Régionaux' 'Any' 'fr' 'Membres de l\'InterCERT France' 'Région'>>
<<tiddler .ReplaceTiddlerTitle with: [[Membres de InterCERT France - CSIRTs Régionaux]]>>
<<tiddler f_TabFR with: '33P_' 'Liaisons' 'Any' 'fr' 'Membres de l\'InterCERT France' 'Liaison'>>
<<tiddler .ReplaceTiddlerTitle with: [[Membres de InterCERT France - Personnes avec le Statut de Liaisons]]>>
<<tiddler f_TabFR with: '33O_' 'CSIRTs Institutionnels' 'Any' 'fr' 'Membres de l\'InterCERT France' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Membres de InterCERT France - CSIRTs Institutionnels]]>>
<<tiddler f_TabFR with: '33I_' 'CSIRTs Internes' 'Any' 'fr' 'Membres de l\'InterCERT France' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Membres de InterCERT France - CSIRTs Internes]]>>
<<tiddler f_TabFR with: '33E_' 'CSIRTs Externes' 'Any' 'fr' 'Membres de l\'InterCERT France' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Membres de InterCERT France - CSIRTs Externes / Commerciaux / Offreurs de Services]]>>
<<tiddler f_TabFR with: 'aFR_' 'CSIRTs Externes' 'Any' 'fr' 'Membres de l\'InterCERT France' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Membres de InterCERT France - Tous les CSIRTs et Liaisons]]>>
<<tiddler f_TabFR with: '330_","33P_' 'CSIRTs et Personnes Affiliées' 'Any' 'fr' 'NON membres de l\'InterCERT France' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[CSIRTs et Personnes Affiliées Non Membres de l\'InterCERT France]]>>
À date (''<<tiddler [[f_MA]]>>''), voici la courbe de croissance du nombre de CSIRTs français au FIRST +++[ici »] [img(50%,auto)[iCSIRT/FIRST_FR_O9.png]] ===
<<tiddler f_TabFR with: 'FR_","1_' 'CSIRTs et Liaisons au FIRST' 'All' 'fr' 'France' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[France - CSIRTs et Liaisons Membres du FIRST]]>>
<<tabs tFRTFC 'Panorama' '' [[CSIRTs - FR - TF-CSIRT##Panorama]] 'Associates' '' [[CSIRTs - FR - TF-CSIRT##Associates]] 'Listed' '' [[CSIRTs - FR - TF-CSIRT##Listed]] 'Accredited' '' [[CSIRTs - FR - TF-CSIRT##Accredited]] 'Certified' '' [[CSIRTs - FR - TF-CSIRT##Certified]] 'Suspended' '' [[CSIRTs - FR - TF-CSIRT##Suspended]] 'Tous' '' [[CSIRTs - FR - TF-CSIRT##Tous]] >>
/%
!Panorama
Au total, il y a ''<<tiddler f_NbAllny with: 'All' 'FR_","7_'>>'' membres de la [[TF-CSIRT|Association - TF-CSIRT]] qui se répartissent en :
|Statut|Quantité|h
|//Associates//| <<tiddler f_NbAllny with: 'All' 'FR_","7_","7P_'>> |
|//Listed//| <<tiddler f_NbAllny with: 'All' 'FR_","7_","7L_'>> |
|//Accredited//| <<tiddler f_NbAllny with: 'All' 'FR_","7_","7A_'>> |
|//Certified//| <<tiddler f_NbAllny with: 'All' 'FR_","7_","7C_'>> |
|//Suspended//| <<tiddler f_NbAllny with: 'All' 'FR_","7_","7S_'>> |
@@color:#000091;▬▬▬▬@@
Lien vers le site [[Trusted Introducer ⇗|https://www.trusted-introducer.org/]].
!Associates
<<tiddler f_TabFR with: 'FR_","7_","7P_' '//Associates// TF-CSIRT' 'All' 'fr' 'France' 'Personne'>>
!Listed
<<tiddler f_TabFR with: 'FR_","7_","7L_' '//Listed// TF-CSIRT' 'All' 'fr' 'France' 'Entité'>>
!Accredited
<<tiddler f_TabFR with: 'FR_","7_","7A_' '//Accredited// TF-CSIRT' 'All' 'fr' 'France' 'Entité'>>
!Certified
<<tiddler f_TabFR with: 'FR_","7_","7C_' '//Certified// TF-CSIRT' 'All' 'fr' 'France' 'Entité'>>
!Suspended
<<tiddler f_TabFR with: 'FR_","7_","7S_' '//Suspended// TF-CSIRT' 'All' 'fr' 'France' 'Entité'>>
!Tous
<<tiddler f_TabFR with: 'FR_","7_' 'CSIRTs, //Associates// et //Liaisons//' 'All' 'fr' 'France' 'Entité'>>
!end
%/
<<tiddler .ReplaceTiddlerTitle with: [[France - CSIRTs et Associates de la TF-CSIRT]]>>
Liste //non exhaustive// de ''<<tiddler f_NbAllny with: 'All' 'FR_","0bs0_'>>'' CSIRTs qui après quelques années ont été renommés, acquis ou arrêtés +++[Détails »]>...
<<forEachTiddler where 'tiddler.tags.containsAll(["FR_","0bs0_"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "||>|>| !Avant ||>|>| !Depuis |\n|!#|!Société|!CSIRT/CERT|!Début|!Raison|!Société|!CSIRT/CERT|!Fin|\n| " : "\n| ")+(index+1)+"|\<\<tiddler [["+tiddler.title+"::o1]]\>\>|@@color:#E1000F;\<\<tiddler [["+tiddler.title+"::n]]\>\>@@|\<\<tiddler [["+tiddler.title+"::c1]]\>\>|\<\<tiddler [["+tiddler.title+"::0]]\>\>|\<\<tiddler [["+tiddler.title+"::o9]]\>\>|\<\<tiddler [["+tiddler.title+"::n9]]\>\>|@@color:#E1000F;\<\<tiddler [["+tiddler.title+"::c9]]\>\>@@|"' end '""'>> ===
Liste //non exhaustive// de ''<<tiddler f_NbAllny with: 'All' 'FR_","aS1_'>>'' CSIRTs ayant déjà été parrains/sponsors pour la TF-CSIRT ou le FIRST +++[Détails »]><<tiddler f_TabSp with: 'All' 'FR_","aS1_'>> ===
!Communauté des CSIRTs et des personnes affiliées/Liaisons en Autriche 🇦🇹
<<tabs Csirts 'Panorama' '' [[CSIRTs - Autriche - Intro]] 'CERT-Verbund 🇦🇹' 'Association de CSIRTs en Autriche' [[Association - AT - CERT-Verbund Austria]] 'Les CSIRTs' 'CSIRTs internes, externes, institutionnels…' [[CSIRTs - AT - CSIRTs]] 'Personnes affiliées' '' [[CSIRTs - AT - Personnes]] 'FIRST' '' [[CSIRTs - AT - FIRST]] 'TF-CSIRT' '' [[CSIRTs - AT - TF-CSIRT]] 'Tous' '' [[CSIRTs - AT - Tous]]>>/%
|MaJ|O3E|
|f|🇦🇹|
|n|Autriche|
|z|eu|
%/
<<tiddler f_Cc2_0 with: 'AT' 'Autriche' 'at'>>
<<tabs AssCC 'Intro' 'Présentation CERT-Verbund Austria' [[Association - AT - CERT-Verbund Austria##Intro]] 'Membres' 'Membres CERT-Verbund Austria' [[Association - AT - CERT-Verbund Austria##Membres]]>>
/%
!Intro
<<tiddler f_CcAss with: 'CERT-Verbund Austria' 'AT' 'Autriche' 'Association - AT - CERT-Verbund Austria' '-' 'est une association indépendante à but non lucratif qui vise à la construction de relations de confiance entre les membres participants. Ces membres sont des CSIRTs basés en Autriche'>>
!Membres
<<tiddler f_TabEU with: 'aAT_' 'CSIRTs membres du CERT-Verbund Austria' 'Any' 'AT' 'Autriche' 'CSIRTs'>>
!end
|n|CERT-Verbund Austria|
|d|AT|
|cct|at|
|c|2011|
|Pay|Autriche|
|f|🇦🇹|
|u|[[⇗|https://www.onlinesicherheit.gv.at/Themen/Erste-Hilfe/CERTs/CERT-Verbund-Oesterreich.html]]|
|Mem|[[⇗|https://www.onlinesicherheit.gv.at/Themen/Erste-Hilfe/CERTs/CERT-Verbund-Oesterreich.html]]|
|Png||
|q|<<tiddler f_NbAllny with: 'All' 'aAT_'>>|
|Tot|~20|
|z|eu|
%/<<tiddler .ReplaceTiddlerTitle with: [[Autriche - Association des CSIRTs - CERT-Verbund Austria]]>>
<<tiddler f_TabEU with: 'ATP_' 'Personnes Affiliées/Liaisons' 'Any' 'at' 'Autriche' 'Personne'>>
Il y a aussi ''<<tiddler f_NbAllny with: Any M_ATP_>>'' personnes dont la participation n'est pas publique.
<<tiddler f_TabEU with: 'ATT_' 'CSIRTs ' 'Any' 'at' 'Autriche' 'Entités'>>
<<tiddler f_TabEU with: 'ATT_","ATP_' 'CSIRTs et personnes affiliées/Liaisons basés en Autriche' 'Any' 'at' 'Autriche' 'Entités'>>/%
|MaJ|O9B|
%/
<<tiddler f_TabEU with: 'AT_","1T_' 'CSIRTs et Liaisons au FIRST' 'All' 'at' 'Autriche' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Autriche - CSIRTs et Liaisons Membres du FIRST]]>>
<<tabs tATTFC 'Panorama' '' [[CSIRTs - AT - TF-CSIRT##Panorama]] 'Associate' '' [[CSIRTs - AT - TF-CSIRT##Associate]] 'Listed' '' [[CSIRTs - AT - TF-CSIRT##Listed]] 'Accredited' '' [[CSIRTs - AT - TF-CSIRT##Accredited]] 'Certified' '' [[CSIRTs - AT - TF-CSIRT##Certified]] 'Suspended' '' [[CSIRTs - AT - TF-CSIRT##Suspended]] 'Tous' '' [[CSIRTs - AT - TF-CSIRT##Tous]] >>
/%
!Panorama
<<tiddler f_Cc2T_1 with: 'AT' 'Autriche'>>
!Associate
<<tiddler f_TabEU with: 'AT_","7_","7P_' '//Associates// TF-CSIRT' 'All' 'at' 'Autriche' 'Personne'>>
!Listed
<<tiddler f_TabEU with: 'AT_","7_","7L_' '//Listed// TF-CSIRT' 'All' 'at' 'Autriche' 'Entité'>>
!Accredited
<<tiddler f_TabEU with: 'AT_","7_","7A_' '//Accredited// TF-CSIRT' 'All' 'at' 'Autriche' 'Entité'>>
!Certified
<<tiddler f_TabEU with: 'AT_","7_","7C_' '//Certified// TF-CSIRT' 'All' 'at' 'Autriche' 'Entité'>>
!Suspended
<<tiddler f_TabEU with: 'AT_","7_","7S_' '//Suspended// TF-CSIRT' 'All' 'at' 'Autriche' 'Entité'>>
!Tous
<<tiddler f_TabEU with: 'AT_","7_' 'CSIRTs, //Associates// et //Liaisons//' 'All' 'at' 'Autriche' 'Entité'>>
!end
%/
<<tiddler .ReplaceTiddlerTitle with: [[Autriche - CSIRTs et Associates de la TF-CSIRT]]>>
<<tabs Csirts 'Panorama' '' [[Communauté CSIRTs - Belgique - Intro]] 'Les CSIRTs' 'CSIRTs internes, externes, institutionnels…' [[CSIRTs - BE - CSIRTs]] 'Personnes affiliées' '' [[CSIRTs - BE - Personnes]] 'FIRST' '' [[CSIRTs - BE - FIRST]] 'TF-CSIRT' '' [[CSIRTs - BE - TF-CSIRT]] 'Tous' '' [[CSIRTs - BE - Tous]]>>/%
|n|Belgique|
%/
<<tiddler f_Cc2_1 with: 'BE' 'Belgique' 'be' 'Belgian Cyber Security Coalition'>>
<<tiddler f_TabEU with: 'BEP_' 'Personnes Affiliées' 'Any' 'be' 'Belgique' 'Personne'>>Il y a aussi ''<<tiddler f_NbAllny with: Any M_BEP_>>'' personnes dont la participation n'est pas publique.
<<tiddler f_TabEU with: 'BET_' 'CSIRTs ' 'Any' 'be' 'Belgique' 'Entités'>>
<<tiddler f_TabEU with: 'BET_","BEP_' 'CSIRTs et personnes affiliées/Liaisons basés en Belgique' 'Any' 'be' 'Belgique' 'Entités'>>/%
|MaJ|NC9|
%/
<<tiddler f_TabEU with: 'BE_","1T_' 'CSIRTs et Liaisons au FIRST' 'All' 'be' 'Belgique' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Belgique - CSIRTs et Liaisons Membres du FIRST]]>>
<<tabs tBETFC 'Panorama' '' [[CSIRTs - BE - TF-CSIRT##Panorama]] 'Associate' '' [[CSIRTs - BE - TF-CSIRT##Associate]] 'Listed' '' [[CSIRTs - BE - TF-CSIRT##Listed]] 'Accredited' '' [[CSIRTs - BE - TF-CSIRT##Accredited]] 'Certified' '' [[CSIRTs - BE - TF-CSIRT##Certified]] 'Suspended' '' [[CSIRTs - BE - TF-CSIRT##Suspended]] 'Tous' '' [[CSIRTs - BE - TF-CSIRT##Tous]] >>
/%
!Panorama
<<tiddler f_Cc2T_1 with: 'BE' 'Belgique' 'Belgian Cyber Security Coalition'>>
!Associate
<<tiddler f_TabEU with: 'BE_","7_","7P_' '//Associates// TF-CSIRT' 'All' 'be' 'Belgique' 'Personne'>>
!Listed
<<tiddler f_TabEU with: 'BE_","7_","7L_' '//Listed// TF-CSIRT' 'All' 'be' 'Belgique' 'Entité'>>
!Accredited
<<tiddler f_TabEU with: 'BE_","7_","7A_' '//Accredited// TF-CSIRT' 'All' 'be' 'Belgique' 'Entité'>>
!Certified
<<tiddler f_TabEU with: 'BE_","7_","7C_' '//Certified// TF-CSIRT' 'All' 'be' 'Belgique' 'Entité'>>
!Suspended
<<tiddler f_TabEU with: 'BE_","7_","7S_' '//Suspended// TF-CSIRT' 'All' 'be' 'Belgique' 'Entité'>>
!Tous
<<tiddler f_TabEU with: 'BE_","7_' 'CSIRTs, //Associates// et //Liaisons//' 'All' 'be' 'Belgique' 'Entité'>>
!end
%/
<<tiddler .ReplaceTiddlerTitle with: [[Belgique - CSIRTs et Associates de la TF-CSIRT]]>>
!Communauté des CSIRTs et des personnes affiliées/Liaisons en Suisse 🇨🇭
<<tabs Csirts 'Panorama' '' [[Communauté CSIRTs - Suisse - Intro]] 'Les CSIRTs' 'CSIRTs internes, externes, institutionnels…' [[CSIRTs - CH - CSIRTs]] 'Personnes affiliées' '' [[CSIRTs - CH - Personnes]] 'FIRST' '' [[CSIRTs - CH - FIRST]] 'TF-CSIRT' '' [[CSIRTs - CH - TF-CSIRT]] 'Tous' '' [[CSIRTs - CH - Tous]]>>/%
|MaJ|O3E|
|n|Suisse|
|z|eu|
%/
<<tiddler f_Cc2_0 with: 'CH' 'Suisse' 'ch'>>
!!Association de CSIRTs en Suisse[>img[iCC/ch.png]]
Certains CSIRTs suisses partagent des informations dans le cadre du [[Association - CH - Swiss CSIRT Forum]].
Le ''Swiss CSIRT Forum'' est une association informelle qui regroupe différentes CSIRTs basés en Suisse.
Aucune information n'est disponible en source ouverte à son sujet si ce n'est que l'un de ses co-fondateurs est le [[SWITCH-CERT|CSIRT - CH - SWITCH-CERT]].
<<tiddler f_TabEU with: 'CHP_' 'Personnes Affiliées/Liaisons' 'Any' 'ch' 'Suisse' 'Personne'>>
Il y a aussi ''<<tiddler f_NbAllny with: Any M_CHP_>>'' personnes dont la participation n'est pas publique.
<<tiddler f_TabEU with: 'CHT_' 'CSIRTs ' 'Any' 'ch' 'Suisse' 'Entités'>>
<<tiddler f_TabEU with: 'CH_Z_","CHP_' 'CSIRTs et personnes affiliées/Liaisons basés en Suisse' 'Any' 'ch' 'Suisse' 'Entités'>>/%
|MaJ|NC9|
%/
<<tiddler f_TabEU with: 'CH_","1T_' 'CSIRTs et Liaisons au FIRST' 'All' 'ch' 'Suisse' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Suisse - CSIRTs et Liaisons Membres du FIRST]]>>
<<tabs tCHTFC 'Panorama' '' [[CSIRTs - CH - TF-CSIRT##Panorama]] 'Associate' '' [[CSIRTs - CH - TF-CSIRT##Associate]] 'Listed' '' [[CSIRTs - CH - TF-CSIRT##Listed]] 'Accredited' '' [[CSIRTs - CH - TF-CSIRT##Accredited]] 'Certified' '' [[CSIRTs - CH - TF-CSIRT##Certified]] 'Suspended' '' [[CSIRTs - CH - TF-CSIRT##Suspended]] 'Tous' '' [[CSIRTs - CH - TF-CSIRT##Tous]] >>
/%
!Panorama
<<tiddler f_Cc2T_1 with: 'CH' 'Suisse'>>
!Associate
<<tiddler f_TabEU with: 'CH_","7_","7P_' '//Associates// TF-CSIRT' 'All' 'ch' 'Suisse' 'Personne'>>
!Listed
<<tiddler f_TabEU with: 'CH_","7_","7L_' '//Listed// TF-CSIRT' 'All' 'ch' 'Suisse' 'Entité'>>
!Accredited
<<tiddler f_TabEU with: 'CH_","7_","7A_' '//Accredited// TF-CSIRT' 'All' 'ch' 'Suisse' 'Entité'>>
!Certified
<<tiddler f_TabEU with: 'CH_","7_","7C_' '//Certified// TF-CSIRT' 'All' 'ch' 'Suisse' 'Entité'>>
!Suspended
<<tiddler f_TabEU with: 'CH_","7_","7S_' '//Suspended// TF-CSIRT' 'All' 'ch' 'Suisse' 'Entité'>>
!Tous
<<tiddler f_TabEU with: 'CH_","7_' 'CSIRTs, //Associates// et //Liaisons//' 'All' 'ch' 'Suisse' 'Entité'>>
!end
%/
<<tiddler .ReplaceTiddlerTitle with: [[Suisse - CSIRTs et Associates de la TF-CSIRT]]>>
!Communauté des CSIRTs et des personnes affiliées/Liaisons en Allemagne 🇩🇪
<<tabs Csirts 'Panorama' '' [[CSIRTs - Allemagne - Intro]] 'CERT-Verbund 🇩🇪' 'Association de CSIRTs en Allemagne' [[Association - DE - CERT-Verbund]] 'Les CSIRTs' 'CSIRTs internes, externes, institutionnels…' [[CSIRTs - DE - CSIRTs]] 'Personnes affiliées' '' [[CSIRTs - DE - Personnes]] 'FIRST' '' [[CSIRTs - DE - FIRST]] 'TF-CSIRT' '' [[CSIRTs - DE - TF-CSIRT]] 'Tous' '' [[CSIRTs - DE - Tous]]>>/%
|MaJ|O9S|
|f|🇩🇪|
|n|Allemagne|
|z|eu|
%/
<<tiddler f_Cc2_C with: 'DE' 'Allemagne' 'de' 'CERT-Verbund'>>
<<tabs AssCC 'Intro' 'Présentation CERT-Verbund' [[Association - DE - CERT-Verbund##Intro]] 'Membres' 'Membres CERT-Verbund' [[Association - DE - CERT-Verbund##Membres]]>>
/%
!Intro
<<tiddler f_CcAss with: 'CERT-Verbund' 'DE' 'Allemagne' 'Association - DE - CERT-Verbund' '-' 'est une association indépendante à but non lucratif qui vise à la construction de relations de confiance entre les membres participants. Ces membres sont des CSIRTs basés en Allemagne'>>
!Membres
<<tiddler f_TabEU with: 'aDE_' 'CSIRTs membres du CERT-Verbund' 'Any' 'DE' 'Allemagne' 'CSIRTs'>>
!end
|n|CERT-Verbund|
|d|DE|
|cct|de|
|c|2002|
|Pay|Allemagne|
|f|🇩🇪|
|Mem|[[⇗|https://www.cert-verbund.de/index.html]]|
|u|[[⇗|https://www.cert-verbund.de/]]|
|Png||
|q|<<tiddler f_NbAllny with: 'All' 'aDE_'>>|
|Tot|~60|
|z|eu|
[Mail|cv-lk[@]lists[.]cert-verbund[.]de|
%/<<tiddler .ReplaceTiddlerTitle with: [[Allemagne - Association des CSIRTs - CERT-Verbund]]>>
@@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@ … <html><i class='fa fa-person-digging'</i></html> … Article en cours de rédaction … <html><i class='fa fa-person-digging'</i></html> … @@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@
<<tiddler f_TabEU with: 'DEP_' 'Personnes Affiliées/Liaisons' 'Any' 'de' 'Allemagne' 'Personne'>>
Il y a aussi ''<<tiddler f_NbAllny with: Any M_DEP_>>'' personnes dont la participation n'est pas publique.
@@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@ … <html><i class='fa fa-person-digging'</i></html> … Article en cours de rédaction … <html><i class='fa fa-person-digging'</i></html> … @@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@
<<tiddler f_TabEU with: 'DET_' 'CSIRTs ' 'Any' 'de' 'Allemagne' 'Entités'>>
<<tiddler f_TabEU with: 'DET_","DEP_' 'CSIRTs et personnes affiliées/Liaisons basés en Allemagne' 'Any' 'de' 'Allemagne' 'Entités'>>/%
|MaJ|O9B|
%/
@@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@ … <html><i class='fa fa-person-digging'</i></html> … Article en cours de rédaction … <html><i class='fa fa-person-digging'</i></html> … @@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@
<<tiddler f_TabEU with: 'DE_","1T_' 'CSIRTs et Liaisons au FIRST' 'All' 'de' 'Allemagne' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Allemagne - CSIRTs et Liaisons Membres du FIRST]]>>
@@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@ … <html><i class='fa fa-person-digging'</i></html> … Article en cours de rédaction … <html><i class='fa fa-person-digging'</i></html> … @@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@
<<tabs tDETFC 'Panorama' '' [[CSIRTs - DE - TF-CSIRT##Panorama]] 'Associate' '' [[CSIRTs - DE - TF-CSIRT##Associate]] 'Listed' '' [[CSIRTs - DE - TF-CSIRT##Listed]] 'Accredited' '' [[CSIRTs - DE - TF-CSIRT##Accredited]] 'Certified' '' [[CSIRTs - DE - TF-CSIRT##Certified]] 'Suspended' '' [[CSIRTs - DE - TF-CSIRT##Suspended]] 'Tous' '' [[CSIRTs - DE - TF-CSIRT##Tous]] >>
/%
!Panorama
<<tiddler f_Cc2T_1 with: 'DE' 'Allemagne'>>
!Associate
<<tiddler f_TabEU with: 'DE_","7_","7P_' '//Associates// TF-CSIRT' 'All' 'de' 'Allemagne' 'Personne'>>
!Listed
<<tiddler f_TabEU with: 'DE_","7_","7L_' '//Listed// TF-CSIRT' 'All' 'de' 'Allemagne' 'Entité'>>
!Accredited
<<tiddler f_TabEU with: 'DE_","7_","7A_' '//Accredited// TF-CSIRT' 'All' 'de' 'Allemagne' 'Entité'>>
!Certified
<<tiddler f_TabEU with: 'DE_","7_","7C_' '//Certified// TF-CSIRT' 'All' 'de' 'Allemagne' 'Entité'>>
!Suspended
<<tiddler f_TabEU with: 'DE_","7_","7S_' '//Suspended// TF-CSIRT' 'All' 'de' 'Allemagne' 'Entité'>>
!Tous
<<tiddler f_TabEU with: 'DE_","7_' 'CSIRTs, //Associates// et //Liaisons//' 'All' 'de' 'Allemagne' 'Entité'>>
!end
%/
<<tiddler .ReplaceTiddlerTitle with: [[Allemagne - CSIRTs et Associates de la TF-CSIRT]]>>
<<tabs Csirts 'Panorama' '' [[Communauté CSIRTs - Espagne - Intro]] 'CSIRT.es 🇪🇸' 'Association de CSIRTs en Espagne' [[Association - ES - CSIRT.es]] 'FIRST' '' [[CSIRTs - ES - FIRST]] 'TF-CSIRT' '' [[CSIRTs - ES - TF-CSIRT]] 'Tous' '' [[CSIRTs - ES - Tous]]>>/%
|n|Espagne|
%/
|Estimation actuelle : ~90 CSIRTs et 7 Liaisons|
<<tiddler f_Cc2_1 with: 'ES' 'Espagne' 'es' 'CSIRT.es'>>
<<tabs AssCC 'Intro' 'Présentation CSIRT.es' [[Association - ES - CSIRT.es##Intro]] 'Membres' 'Membres CSIRT.es' [[Association - ES - CSIRT.es##Membres]]>>
/%
!Intro
<<tiddler f_CcAss with: 'CSIRT.es' 'ES' 'Espagne' 'Association - ES - CSIRT.es' '-' '(//Equipos de Ciberseguridad y Gestión de Incidentes españoles//) est une association indépendante à but non lucratif qui vise à la construction de relations de confiance entre les membres participants. Ces membres sont des CSIRTs basés en Espagne.'>>
!Membres
<<tiddler f_TabEU with: 'aES_' 'CSIRTs membres du CSIRT.es' 'Any' 'ES' 'Espagne' 'CSIRTs'>>
!end
|n|CSIRT.es|
|d|ES|
|cct|es|
|c|~2007|
|Pay|Espagne|
|f|🇪🇸|
|u|[[⇗|https://www.csirt.es/index.php/en/]]|
|Mem|[[⇗|https://www.csirt.es/index.php/en/miembros-en-menu]]|
|Png|[[⇗|https://www.csirt.es/index.php/en/contact]]|
|q|77|
|Tot|~100|
|z|eu|
%/<<tiddler .ReplaceTiddlerTitle with: [[Espagne - Association des CSIRTs - CSIRT.es]]>>
@@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@ … <html><i class='fa fa-person-digging'</i></html> … Article en cours de rédaction … <html><i class='fa fa-person-digging'</i></html> … @@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@
|Total actuel : 61 CSIRTs et 7 Liaisons|
<<tiddler f_TabEU with: 'ES_","1T_' 'CSIRTs et Liaisons au FIRST' 'All' 'es' 'Espagne' 'Entité'>>
<<tiddler f_TabEU with: 'ES_","1P_' 'Liaisons au FIRST' 'All' 'es' 'Espagne' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Espagne - CSIRTs et Liaisons Membres du FIRST]]>>
<<tabs tESTFC 'Panorama' '' [[CSIRTs - ES - TF-CSIRT##Panorama]] 'Associate' '' [[CSIRTs - ES - TF-CSIRT##Associate]] 'Listed' '' [[CSIRTs - ES - TF-CSIRT##Listed]] 'Accredited' '' [[CSIRTs - ES - TF-CSIRT##Accredited]] 'Certified' '' [[CSIRTs - ES - TF-CSIRT##Certified]] 'Suspended' '' [[CSIRTs - ES - TF-CSIRT##Suspended]] 'Tous' '' [[CSIRTs - ES - TF-CSIRT##Tous]] >>
/%
!Panorama
<<tiddler f_Cc2T_1 with: 'ES' 'Espagne' 'CERT.es'>>
!Associate
<<tiddler f_TabEU with: 'ES_","7_","7P_' '//Associates// TF-CSIRT' 'All' 'es' 'Espagne' 'Personne'>>
!Listed
<<tiddler f_TabEU with: 'ES_","7_","7L_' '//Listed// TF-CSIRT' 'All' 'es' 'Espagne' 'Entité'>>
!Accredited
<<tiddler f_TabEU with: 'ES_","7_","7A_' '//Accredited// TF-CSIRT' 'All' 'es' 'Espagne' 'Entité'>>
!Certified
<<tiddler f_TabEU with: 'ES_","7_","7C_' '//Certified// TF-CSIRT' 'All' 'es' 'Espagne' 'Entité'>>
!Suspended
<<tiddler f_TabEU with: 'ES_","7_","7S_' '//Suspended// TF-CSIRT' 'All' 'es' 'Espagne' 'Entité'>>
!Tous
<<tiddler f_TabEU with: 'ES_","7_' 'CSIRTs, //Associates// et //Liaisons//' 'All' 'es' 'Espagne' 'Entité'>>
!end
%/
<<tiddler .ReplaceTiddlerTitle with: [[Espagne - CSIRTs et Associates de la TF-CSIRT]]>>
@@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@ … <html><i class='fa fa-person-digging'</i></html> … Article en cours de rédaction … <html><i class='fa fa-person-digging'</i></html> … @@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@
<<tiddler f_TabEU with: 'ES_' 'CSIRTs basés en Espagne' 'Any' 'es' 'Espagne' 'Entités'>>/%
<<tiddler .ReplaceTiddlerTitle with: [[Espagne - Liste de CSIRTs]]>>
<<tabs Csirts 'Panorama' '' [[Communauté CSIRTs - Japon - Intro]] 'NCA 🇯🇵' 'Association de CSIRTs du Japon' [[Association - JP - NCA]] 'FIRST' '' [[CSIRTs - JP - FIRST]] 'TF-CSIRT' '' [[CSIRTs - JP - TF-CSIRT]] 'Tous' '' [[CSIRTs - JP - Tous]]>>/%
|n|Japon|
%/
<<tiddler f_Cc2_1 with: 'JP' 'Japon' 'jp' 'NCA'>>
![>img[iCC/jp.png]]Communauté des CSIRTs et des personnes affiliées/Liaisons au Japon 🇯🇵
<<tabs Csirts 'Panorama' '' [[Communauté CSIRTs - Japon]] 'NCA' 'Association de CSIRTs du Japon' [[Association - JP - NCA]] 'FIRST' '' [[CSIRTs - JP - FIRST]] 'TF-CSIRT' '' [[CSIRTs - JP - TF-CSIRT]] 'Tous' '' [[CSIRTs - JP - Tous]]>>
<<tiddler f_TabEU with: 'JPP_' 'Personnes Affiliées' 'Any' 'jp' 'Japon' 'Personne'>>Il y a aussi ''<<tiddler f_NbAllny with: Any M_JPP_>>'' personnes dont la participation n'est pas publique.
<<tiddler f_TabEU with: 'JPT_' 'CSIRTs ' 'Any' 'jp' 'Japon' 'Entités'>>
<<tabs AssCC 'Intro' 'Présentation NCA' [[Association - JP - NCA##Intro]] 'Membres' 'Membres NCA' [[Association - JP - NCA##Membres]]>>
/%
!Intro
<<tiddler f_CcAss with: 'NCA' 'JP' 'Japon' 'Association - JP - NCA' '-' '(般社団法人日本シーサート協議会) est une association qui vise à améliorer la coopération entre les CSIRTs publics et privés au Japon.'>>
!Membres
@@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@ … <html><i class='fa fa-person-digging'</i></html> … Article en cours de rédaction … <html><i class='fa fa-person-digging'</i></html> … @@bgcolor:#DDDDDD;color:#000091;▬@@@@bgcolor:#DDDDDD;color:#FFFFFF;▬@@@@bgcolor:#DDDDDD;color:#E1000F;▬@@
<<tiddler f_TabEU with: 'aJP_' 'CSIRTs membres du NCA' 'Any' 'JP' 'Japon' 'CSIRTs'>>
!end
%/
!!Évolution dans le nombre d'équipes membres de la ''NCA'' (<<tiddler [[Association - JP - NCA::0]]>>)
~~Sources : [[Membres NCA 🇯🇵|https://www.nca.gr.jp/admission/list.html]] et [[Masahito Yamaga 🇯🇵|https://www.linkedin.com/in/masahitoyamaga/recent-activity/all/]]~~
[img(50%,auto)[iCSIRT/JP-NCA-P1.jpg]]
/%
|0|2025.01.06|
|Mem|[[⇗|https://www.nca.gr.jp/#members]]|
|Pay|Japon|
|Png|[[⇗|https://www.nca.gr.jp/#contact]]|
|Tot|~700|
|cct|jp|
|c|2007|
|d|JP|
|f|🇯🇵|
|m|+++[🖂] nca-sec[@]nca[.]gr[.]jp === |
|n|NCA|
|q|569|
|u|[[⇗|https://www.nca.gr.jp/en/index.html]]|
|z|as|
%/<<tiddler .ReplaceTiddlerTitle with: [[Japon - Association des CSIRTs - NCA]]>>
![>img[iCC/jp.png]]Liste de <<tiddler [[Association - JP - NCA::q]]>> CSIRTs membres de la [[NCA|Association - JP - NCA]] basés au Japon
|Nom court|Nom complet|h
|ABJ-PSIRT|ABB Bailey Japan PSIRT|
|ABK-CSIRT|AEON BANK CSIRT|
|ABeam-CSIRT|ABeam Consulting CSIRT|
|ACSiON-CSIRT|ACSiON-CSIRT|
|ADO-CSIRT|AIRDO CSIRT|
|AEON-CSIRT|AEON-CSIRT|
|AFS-CSIRT|AFS-CSIRT|
|AGS-CSIRT|AGS CSIRT|
|AHA-CSIRT|American Home Assurance CSIRT|
|AHIRU|Aflac Hyper Incident Rediness Unit|
|AICA Group CSIRT|AICA GROUP CSIRT|
|AIFUL-CSIRT|AIFUL GROUP CSIRT|
|AISI-CSIRT|AISI-CSIRT|
|AKTIO-CSIRT|AKTIO-CSIRT|
|ALPC-SIRT|Adire Legal Professional Corporation SIRT|
|ALSOK-CSIRT|ALSOK-CSIRT|
|AMIYA-CSIRT|AMIYA-CSIRT|
|AMK CSIRT|AEON MARKETING CSIRT|
|AMUSE-SIRT|AMUSE-SIRT|
|ARUHI-CSIRT|ARUHI-CSIRT|
|ASA-SRT|The Asahi Shimbun CSIRT|
|ASAHI-CSIRT|ASAHI Group CSIRT|
|ASERT Japan|Arbor Security Engineering & Response Team Japan|
|ASICS-CSIRT|ASICS CSIRT|
|ASY-CSIRT|ANA Systems Co., LTD. CSIRT|
|AT-CSIRT|NTT advanced Technology CSIRT|
|AW-CSIRT|AlphaWave CSIRT|
|AXA Japan CSIRT|AXA Japan CSIRT|
|AkamaiJP-SIRT|Security response team of Akamai Technologies Inc.|
|Astellas-CSIRT|Astellas Cyber SIRT|
|Ateam-CSIRT|Ateam-CSIRT|
|B-EN-G CSIRT|B-EN-G CSIRT|
|B2SIRT|B2SIRT|
|BICSIRT|Biccamera SIRT|
|BIPROGY-CSIRT|BIPROGY Group Cyber SIRT|
|BN-CSIRT|BN-CSIRT|
|BOAT RACE CSIRT|BOAT RACE promotion association CSIRT|
|Bene-SIRT|Benesse Group SIRT|
|Benefit one-CSIRT|Benefit one-CSIRT|
|Bengo4-CSIRT|Bengo4.com CSIRT|
|C&R-CSIRT|CREEK & RIVER CSIRT|
|C-NEXCO CSIRT|Central Nippon Expressway CSIRT|
|C-csirt|Chiba University Cyber SIRT|
|CAPCOM-CSIRT|CAPCOM-CSIRT|
|CC-CSIRT|Coincheck CSIRT|
|CCCSIRT|Culture Convenience Club SIRT|
|CD-SIRT|CallDoctor SIRT|
|CDI-CIRT|Cyber Defense Institute CIRT|
|CEC-SIRT|CEC-SIRT|
|CHUDEN-CSIRT|chubu electric power company group CSIRT|
|CJ-CSIRT|CyCraft Japan CSIRT|
|CLP-CSIRT|cloudpack-CSIRT|
|CMS-CSIRT|Core Micro Systems CSIRT|
|COSMO-CSIRT|COSMO Cyber Security Incident Readiness & response Team|
|CRESCO-DT CSIRT|CRESCO-DT CSIRT|
|CTC-SIRT|CTC SIRT|
|CW-CSIRT|CW-CSIRT|
|CYD-CSIRT|Chiyoda CSIRT|
|CalSIRT|Calbee-CSIRT|
|Canon MJ-CSIRT|Canon Marketing Japan Group CSIRT|
|Canon-CSIRT|Canon-CSIRT|
|Cy-SIRT|Cybozu, Inc. CSIRT|
|CyberAgent CSIRT|CyberAgent CSIRT|
|Cybertrust-ISIRT|Cybertrust Information SIRT|
|Cygames CSIRT|Cygames CSIRT|
|D-SIRT|Daihatsu Motor Corporation SIRT|
|D2C-CSIRT|D2C-CSIR|
|DAC CSIRT|DAC CSIRT|
|DAIWA-CSIRT|DAIWA-CSIRT|
|DAMSIRT|Team DAMS CSIRT|
|DENSO SIRT|DENSO SIRT|
|DENTSU SOKEN CSIRT|DENTSU SOKEN CSIRT|
|DFL-CSIRT|Dai-ichi Frontier Life CSIRT|
|DIR-CSIRT|DIR-CSIRT|
|DK-SIRT|Daito Kentaku SIRT|
|DL-CSIRT|DAI-ICHI LIFE CSIRT|
|DM CSIRT|DAIDOMETAL CSIRT|
|DMM.CSIRT|DMM.CSIRT|
|DNP-CSIRT|DNP Group CSIRT|
|DNV-SIRT|DNV-SIRT|
|DOCOMO-CSIRT|DOCOMO CSIRT|
|DS-CSIRT|Daiichi Sankyo Cyber Security Incident Readiness and response Team|
|DSCT|DataSign CSIRT|
|DT-CIRT|Deloitte Tohmatsu Computer Incident Response Team|
|Daigas Group-CSIRT|Daigas Group-CSIRT|
|DeNA CERT|DeNA CERT|
|Densan SIRT|Densan SIRT|
|Dentsu-CSIRT|Dentsu CSIRT|
|EBARA-CSIRT|EBARA-CSIRT|
|EGSIRT|E-Guardian CSIRT|
|EKK-CSIRT|EKK-CSIRT|
|ENEOS-SEC|ENEOS SECurity management group|
|ET-CSIRT|Encourage Technology CSIRT|
|EXE-CSIRT|SystemEXE CSIRT|
|EXEO-SIRT|EXEO SIRT|
|Entetsu-SIRT|Entetsu-SIRT|
|ExSIRT|Excite SIRT|
|FANUC-CSIRT|FANUC CSIRT|
|FCSC|FIXER Cyber Security Center|
|FEC-CSIRT|FEC CSIRT|
|FFRI|Fourteen Forty Reserch Institute|
|FGL-CSIRT|FUJITSU GENERAL CSIRT|
|FJC-CERT|FJC-CERT|
|FMCIRT|FamilyMart Cyber-security Incident Response Team|
|FPS-CSIRT|FPS-CSIRT|
|FSI-CSIRT|FSI-CSIRT|
|FTI-CSIRT|FTI-CSIRT|
|FUJIFILM CERT|FUJIFILM CERT|
|FUJIOIL-CSIRT|FUJIOIL Group Cyber SIRT|
|FUJIQ-CSIRT|Fuji Kyuko CSIRT|
|FUJITEC-CSIRT|FUJITEC CSIRT|
|FURUNO CSIRT|FURUNO CSIRT|
|Fe-CSIRT|Fuji Electric CSIRT|
|Fenrir-CSIRT|Fenrir CSIRT|
|FortiGuard|FortiGuard Labs|
|Future-csirt|Future-csirt|
|G-CSIRT|GLORY-CSIRT|
|GA-CSIRT|GA-CSIRT|
|GCOM-CSIRT|GcomGroup CSIRT|
|GMO 3S|GMO System Security Support|
|GRCS CSIRT|GRCS Inc. CSIRT|
|GREE-IRT|GREE-IRT|
|GRS-CSIRT|GREEN SYSTEM CSIRT|
|GSX-CSIRT|GSX-CSIRT|
|Glico-S|Glico CSIRT|
|Graffer-CSIRT|Graffer-CSIRT|
|H2O-CSIRT|H2O Retailing CSIRT|
|HASEKO-CSIRT|HASEKO GROUP CSIRT|
|HBA-CSIRT|HBA CSIRT|
|HCM-CSIRT|Hitachi Construction Machinery CSIRT|
|HCNET-CSIRT|HCNET-CSIRT|
|HEIWADO-CSIRT|HEIWADO CSIRT|
|HFG-CSIRT|HFG-CSIRT|
|HGC|HAMAGIN-CSIRT|
|HH-CSIRT|HANKYU HANSHIN GROUP CSIRT|
|HIMEGIN CSIRT|Ehime Bank CSIRT|
|HIRT|Hitachi Incident Response Team|
|HITOWA-CSIRT|HITOWA-CSIRT|
|HM-CSIRT|Honda Motor CSIRT|
|HOKUDEN-CSIRT|HOKUDEN-CSIRT|
|HORIBA-CSIRT|HORIBA CSIRT|
|HPK-SIRT|Hamamatsu Photonics SIRT|
|HROne CSIRT|HROne CSIRT|
|HT-CSIRT|Hokuriku Telecommunication Network CSIRT|
|HU-CSIRT|Hokkaido University CSIRT|
|I-CSIRT|ICS CSIRT|
|I-SIRT|Imperialhotel-SIRT|
|IBM-CSIRT|IBM Cyber SIRT|
|IHI-CSIRT|IHI-CSIRT|
|IIBC-SIRT|IIBC SIRT|
|IIJ-SECT|IIJ group SEcurity Coordination Team|
|IK-SIRT|IK-SIRT|
|IL-CSIRT|Intelli-CSIRT|
|IM-CSIRT|Info Mart CSIRT|
|INF-CSIRT|INFRONEER-CSIRT|
|INPEX CSIRT|INPEX CSIRT|
|INTEC-SIRT|INTEC SIRT|
|IREP-CSIRT|IREP CSIRT|
|ISG-SIRT|ISG SIRT|
|ITGG-CSIRT|Intage Group CSIRT|
|ITS-TEA.SIRT|ITS-TEA.SIRT|
|Ierae-CSIRT|Ierae Cyber SIRT|
|Infcurion-SIRT|Infcurion-SIRT|
|InfoCICSIRT|Infosec Cyber Intelligence Center SIRT|
|J-POWER CSIRT|J-POWER CSIRT|
|JACCS-CSIRT|JACCS-CSIRT|
|JARC-CSIRT|Japan Automobile Recycling Promotion Center CSIRT|
|JASDEC-CSIRT|JASDEC-CSIRT|
|JAST-SIRT|Japan System Techniques SIRT|
|JAXA-CSIRT|JAXA CSIRT|
|JBS-CIRT|JBS CIRT|
|JCB-CSIRT|JCB CSIRT|
|JCOM-CSIRT|JCOM Cyber SIRT|
|JCSIRT|JSOL-CSIRT|
|JFE-SIRT|JFE-SIRT|
|JFR-CSIRT|J. FRONT RETAILING CSIRT|
|JFRIC-CSIRT|JFRIC CSIRT|
|JGC CSIRT|JGC CSIRT|
|JIN-CSIRT|JIN CSIRT|
|JINSIRT|JINS SIRT|
|JKC-CSIRT|JVCKENWOOD CSIRT|
|JMDC-CIRT|jmdc-cirt|
|JNFL-CSIRT|Japan Nuclear Fuel Limited CSIRT|
|JPBank CSIRT|Japan Post Bank CSIRT|
|JPCERT/CC|JPCERT Coordination Center|
|JPHoldings CSIRT|JapanPost Holdings CSIRT|
|JPLife CSIRT|JPLife CSIRT|
|JPPost CSIRT|JapanPost CSIRT|
|JPX-CSIRT|JPX-CSIRT|
|JRC-CSIRT|JRC-CSIRT|
|JRQ-CSIRT|KYUSHU RAILWAY COMPANY CSIRT|
|JRS-CSIRT|JR SYSTEM CSIRT|
|JRW-CSIRT|West Japan Railway group CSIRT|
|JS-CSIRT|JS-CSIRT|
|JST-CSIRT|JSTREAM-CSIRT|
|JT CSIRT|JT Cyber SIRT|
|K-CSIRT|KOKUYO-CSIRT|
|K-SIRT|KAJIMA SIRT|
|KADOKAWA-CSIRT|KADOKAWA-CSIRT|
|KAIYODAI-CSIRT|KAIYODAI CSIRT|
|KAYABA-CSIRT|KAYABA-CSIRT|
|KC-SIRT|KYOCERA SIRT.|
|KCCS-CSIRT|KYOCERA Communication Systems CSIRT|
|KDDI-CSIRT|KDDI CSIRT|
|KDE-CSIRT|Konami Digital Entertainment-CSIRT|
|KDK-CSIRT|KANDEKO CSIRT|
|KDL-SIRT|KDL SIRT|
|KEIHAN-SIRT|Keihan group SIRT|
|KEIO-SIRT|KEIO SIRT|
|KEIO-USIRT|Keio University CSIRT|
|KEK CSIRT|KEK CSIRT|
|KINDAI-CSIRT|KINDAI UNIVERSITY CSIRT|
|KIOXIA-CSIRT|KIOXIA-CSIRT|
|KIRIN-CSIRT|KIRIN-CSIRT|
|KJ-CSIRT|KPMG Japan CSIRT|
|KKA-CSIRT|K.K.Ashisuto-CSIRT|
|KKCSIRT|Kakaku.com SIRT|
|KLIRRT|Kaspersky Lab Incident Research and Response Team|
|KM-CSIRT|KONICA MINOLTA CSIRT|
|KNT-CT CSIRT|KNT-CT Holdings Cyber SIRT|
|KOSEN-CSIRT|KOSEN-CSIRT|
|KSIRT|Kameda SIRT|
|KTC|KINTO Technologies CSIRT|
|KTC-SIRT|KTC Group SIRT|
|KU - CSIRT|Kogakuin University CSIRT|
|KURITA-CSIRT|KURITA-CSIRT|
|KYODO-CSIRT|KYODONEWS-CSIRT|
|Kobayashi-SIRT|Kobayashi SIRT|
|Kubota-CSIRT|Kubota CSIRT|
|Kyutech CSIRT|Office of Network and Security Infrastructure in Kyushu Institute of Technology|
|LACERT|LAC Advanced Corporate Emergency Readiness Team|
|LIFE-CSIRT|LIFE-CSIRT|
|LIFULL-CSIRT|LIFULL CSIRT|
|LIXIL-CSIRT|LIXIL-CSIRT|
|LNCSIRT|LIFENET CSIRT|
|LOTTE-CSIRT|LOTTE CSIRT|
|LY Corporation CSIRT|LY Corporation CSIRT|
|Lineo-ISIRT|Lineo Information SIRT|
|M-CSIRT|Marubeni IT Solutions CSIRT|
|MARUI_CSIRT|MARUI_GROUP_CSIRT|
|MB-SIRT|Mori Building Corporation SIRT|
|MBK-CSIRT|Digital Security & Infrastructure Department, Integrated Digital Strategy Division, Mitsui & Co., Ltd.|
|MBSD-SIRT|Mitsui Bussan Secure Directions,Inc. SIRT|
|MC-SIRT|Mitsui Chemicals CSIRT|
|MCDP-CSIRT|MC Data Plus CSIRT|
|MCG-CSIRT|Mitsubishi Chemical Group CSIRT|
|MEIDEN-CSIRT|MEIDEN CSIRT|
|MELCO-CSIRT|Mitsubishi Electric Corporation CSIRT|
|MF-CSIRT|Money Forward Cyber SIRT|
|MFIRST|Mitsui Fudosan Incident Response and Security Teams|
|MHC-SIRT|MHC-SIRT|
|MI-CSIRT|Isetan Mitsukoshi CSIRT|
|MICIN-CSIRT|MICIN-CSIRT|
|MILIZE-CSIRT|MILIZE-CSIRT|
|MJC-CSIRT|MJC-CSIRT|
|MKI-CSIRT|MITSUI KNOWLEDGE INDUSTRY CO., LTD. CSIRT|
|MMC-CERT|Mitsubishi Motors Corporation-CERT|
|MMCSIRT|Mitsubishi Materials CSIRT|
|MMS-CSIRT|MITSUI MINING & SMELTING CSIRT|
|MNF-CSIRT|Mitsubishi Nuclear Fuel CSIRT|
|MOL-CSIRT|MOL CSIRT|
|MOTEX-CSIRT|MOTEX CSIRT|
|MS&AD-CSIRT|MS&AD Insurance Group Holdings CSIRT|
|MTI-CSIRT|MTI Cyber SIRT|
|MUFG-CERT|Mitsubishi UFJ Financial Group - CERT|
|MUFR-CSIRT|MU Frontier Servicer CSIRT|
|MUJI-CSIRT|MUJI-CSIRT|
|MW-SIRT|METAWATER-SIRT|
|MY-SIRT|MEIJIYASUDA CSIRT|
|Macnica-CIRT|Macnica CIRT|
|Makuake CSIRT|Makuake CSIRT|
|Mazda-CSIRT|Mazda-CSIRT|
|Mercari-SIRT|Mercari SIRT|
|Met-CIRT|MetLife Insuranca CIRT|
|Miyadai-CSIRT|University of Miyazaki Cyber SIRT|
|Mizuho-CIRT|Mizuho-CIRT|
|Monex-CSIRT|Monex-CSIRT|
|MorinagaMilk-CSIRT|MorinagaMilk-CSIRT|
|Mynavi-CSIRT|Mynavi-CSIRT|
|NAA CSIRT|Narita International Airport CSIRT|
|NB-CSIRT|The Norinchukin Bank CSIRT|
|NCSIRT|NRI SecureTechnologies CSIRT|
|NCiSIRT|NCiSIRT|
|NEC-CSIRT|NEC CSIRT|
|NEG-CSIRT|Team NEG-CSIRT|
|NESIC-CSIRT|NESIC CSIRT|
|NEXS.STC|NEC Nexsolutions Security Technical Center|
|NF-CSIRT|NTT Finance CSIRT|
|NFL-CSIRT|Neo First Life CSIRT|
|NHK CSIRT|NHK CSIRT|
|NICT-CSIRT|National Institute of Information and Communications Technology CSIRT|
|NII CSIRT|NII CSIRT|
|NIKKEI-SIRT|NIKKEI-SIRT|
|NISSAY IT CSIRT|NISSAY IT CSIRT|
|NISSHIN-CSIRT|NISSHIN-CSIRT|
|NISSIN-CSIRT|NISSIN-CSIRT|
|NK-CSIRT|NIKKOL CSIRT|
|NKD-CSIRT|NaganokenKyodoDensan CSIRT|
|NLG-SIRT|Nuligen-SIRT|
|NLI-CSIRT|Nippon Life Insurance Company CSIRT|
|NLM-CSIRT|NLM-CSIRT|
|NML-CSIRT|NISSAN CSIRT|
|NO&T CSIRT|Nagashima Ohno & Tsunematsu CSIRT|
|NOKG-CSIRT|NOKG-CSIRT|
|NRI-CSIRT|Nomura Research Institute Computer Security Incident Readiness and Response Team|
|NS-CSIRT|NIPPON SIGNAL CSIRT|
|NSG-CSIRT|Nippon Steel Group. CSIRT.|
|NSK-SIRT|NSK-SIRT|
|NSSOL-CSIRT|NSSOL CSIRT|
|NTT Com-SIRT|NTT Communications SIRT|
|NTT EAST-CIRT|NTT EAST CIRT|
|NTT WEST-CIRT|NTT WEST Cybersecurity Incident Response Team|
|NTT-CERT|NTT Computer Security Incident Response and Readiness Coordination Team|
|NTTDATA-CERT|NTTDATA-CERT|
|NTTPC-CSIRT|NTTPC Communications CSIRT|
|NU-CSIRT|Niigata University CSIRT|
|NWL-CSIRT|NWL-CSIRT|
|NetOne-CSIRT|Net One CSIRT|
|Nikon-CSIRT|Nikon CSIRT|
|Nintendo-ISC|Nintendo Information Security Committee|
|NippanG-CSIRT|Nippan Group CSIRT|
|Niterra_CSIRT|Niterra_CSIRT|
|Nitori-sirt|NITORI CSIRT|
|Nitto-CSIRT|Nitto-CSIRT|
|NuST|Nulab Security Team|
|OBAYASHI-CSIRT|OBAYASHI CSIRT|
|OBC-SIRT|OBIC BUSINESS CONSULTANTS SIRT|
|OCE-CSIRT|Osaki Computer Engineering CSIRT|
|OER-CSIRT|OER-CSIRT|
|OGIS-CSIRT|OGIS-CSIRT|
|OJC|OJI CSIRT|
|OK-CSIRT|Osaka Kyoiku University CSIRT|
|OKAMURA-CSIRT|OKAMURA CSIRT|
|OKAYA-CSIRT|OKAYA CSIRT|
|OKAYAMA-U CSIRT|Okayama University CSIRT|
|OKI-CSIRT|OKI CSIRT|
|OKU-CSIRT|OKUMURAGUMI-CSIRT|
|OLYMPUS-CIRT|OLYMPUS CIRT|
|OMRON-SIRT|OMRON SIRT|
|OMU CSIRT|Osaka Metropolitan University CSIRT|
|ONO-SIRT|ONO-SIRT|
|OPTAGE CSIRT|OPTAGE CSIRT|
|ORIX-SIRT|ORIX SIRT|
|OTEMON-CSIRT|Otemon Gakuin CSIRT|
|OU-CSIRT|OU-CSIRT|
|Otsuka-CSIRT|Otsuka CSIRT|
|PCA-CSIRT|PCA CSIRT|
|PCC-CSIRT|POCKETCARD CSIRT|
|PEPABO CSIRT|GMO PEPABO CSIRT|
|PERSOL-SIRT|PERSOL GROUP SIRT|
|PFN-SIRT|Preferred Networks SIRT|
|PHCHD-CSIRT|PHCHD Cyber SIRT|
|PIRATES|Professionals of Intelligence-based Risk Assessment and Total Emergency Services|
|PKCOM-CSIRT|PKSHA Communication CSIRT|
|PNexG-SIRT|PRONEXUS Group CSIRT|
|PPLN-CSIRT|PIPELINE CSIRT|
|PSC-CSIRT|PSC-CSIRT|
|Panasonic CSIRT|Panasonic Cyber SIRT|
|Pasona-CSIRT|Pasona CSIRT|
|PayPay Bank CSIRT|The PayPay Bank CSIRT|
|Pioneer CSIRT|Pioneer CSIRT|
|PwC Japan CSIRT|PwC Japan CSIRT|
|QSIRT|QualitySoft SIRT|
|QTnet CSIRT|QTnet CSIRT|
|Qdai CSIRT|Kyudai CSIRT|
|RFT-CSIRT|Rakuten FinTech-CSIRT|
|RICOH-CSIRT|RICOH-CSIRT|
|RLSC-SIRT|SBS RICOH LOGISTICS CSIRT|
|RM-CSIRT|Rakuten Mobile CSIRT|
|RS-CIRT|Risk Solutions - Cybersecurity Incident Response Team|
|Rakuten-CERT|Rakuten CERT|
|Recruit-CSIRT|Recruit Cyber SIRT|
|Resona-CSIRT|Resona-CSIRT|
|Rohto-SIRT|Rohto SIRT|
|Ryobi-SIRT|Ryobi Systems SIRT|
|S-CSIRT|S-CSIRT|
|SAKURA.SIRT|SAKURA.SIRT|
|SANKEI-CSIRT|SANKEI SHIMBUN CSIRT|
|SANWA-CSIRT|SANWA-CSIRT|
|SB-CSIRT|Sonybank CSIRT|
|SBI-SBKG-CSIRT|SBI Shinsei Bank Group C-SIRT|
|SBILIFE-CSIRT|SBI Life CSIRT|
|SBISONPO-CSIRT|SBI Insurance CSIRT|
|SBT-CSIRT|SB Technology CSIRT|
|SC-CSIRT|Sumitomo Chemical CSIRT|
|SCHD-CSIRT|SCHD-CSIRT|
|SCREEN CSIRT|SCREEN-JP-CSIRT|
|SCSK-CSIRT|SCSK-CSIRT|
|SE-CSIRT|SE-CSIRT|
|SECOM-CSIRT|SECOM CSIRT|
|SEI-CSIRT|SEI-CSIRT|
|SEIBU-CSIRT|SEIBU CSIRT|
|SEMBA-CSIRT|SEMBA CSIRT|
|SG-CSIRT|Shizuoka Gas CSIRT|
|SGC|Sangetsu CSIRT|
|SGH-CSIRT|SGH-CSIRT|
|SHIFSIRT|SHIFT computer SIRT|
|SHIZUGIN-CSIRT|SHIZUOKA BANK CSIRT|
|SHU-CSIRT|Shueisha Group CSIRT|
|SIG CSIRT|SIG CSIRT|
|SIM-SIRT|Soracom Information Management and SIRT|
|SJ-CSIRT|SJ-CSIRT|
|SL-CSIRT|SonyLife CSIRT|
|SMAC|JB Service Solution Management and Access Center|
|SMBC Group CSIRT|SMBC Group CSIRT|
|SMCC CSIRT|SMCC CSIRT|
|SMMC|SMM-CSIRT|
|SMP-CSIRT|Sumitomo Dainippon Pharma CSIRT|
|SNC SIRT|Sony Network Communications SIRT|
|SOC-CSIRT|SUMITOMO OSAKA CEMENT CSIRT|
|SOGO SIRT|SOGO MEDICAL SIRT|
|SOMPO HD CSIRT|SOMPO HOLDINGS CSIRT|
|SONY-JP-SIRT|SONY Japan SIRT|
|SOTETSU-CSIRT|SOTETSU-CSIRT|
|SPH-SIRT|Sugi Pharmacy SIRT|
|SPSV-CSIRT|Sony Payment Services CSIRT|
|SRIG-CSIRT|Sumitomo Rubber Industries Group CSIRT|
|SSI-CSIRT|Software Service, Inc. CSIRT|
|SSNB-CSIRT|SBI Sumishin Net Bank CSIRT|
|STechI-CSIRT|STechI CSIRT|
|SU-CSIRT|Shizuoka University CSIRT|
|SUMIBE-CSIRT|SUMIBE-CSIRT|
|SUMITEM-CSIRT|SUMITEM CSIRT|
|SURUGA CSIRT|SURUGA bank CSIRT|
|SUSIRT|Shinshu University SIRT|
|SUZUKI-CSIRT|SUZUKI-CSIRT|
|SWC-CSIRT|The Sumitomo Warehouse Co., Ltd. CSIRT|
|Saison Technology CSIRT|Saison Technology CSIRT|
|Sakura-IS-CSIRT|Sakura Information Systems CSIRT|
|San-Ei Gen CSIRT|San-Ei Gen F.F.I. CSIRT|
|Sansan-CSIRT|Sansan-CSIRT|
|Santen-SIRT|Santen SIRT|
|Sekisui House CSIRT|Sekisui House CSIRT|
|Sep-CIRT|Septeni Computer Incident Response Team|
|Shimadai-CSIRT|Shimadai-CSIRT|
|Shimano-CSIRT|Shimano-CSIRT|
|Shimz-SIRT|SHIMIZU CORPORATION SIRT|
|ShinMaywa-CSIRT|ShinMaywa CSIRT|
|Shiseido CSIRT|Shiseido CSIRT|
|Shochu-SIRT|Shochu-SIRT|
|Shop Channel CSIRT|Shop Channel CSIRT|
|Simplex-CSIRT|Simplex-CSIRT|
|Sky-SIRT|Sky-SIRT|
|SoftBank CSIRT|SoftBank CSIRT|
|Sol-CSIRT|Solasto-CSIRT|
|Soliton-CSIRT|Soliton-CSIRT|
|SuMiTPFC-CSIRT|SuMiTPFC CSIRT|
|Sumirin-CSIRT|Sumitomo Forestry Group CSIRT|
|Suntory CSIRT|Suntory CSIRT|
|Sysmex-CSIRT|Sysmex CSIRT|
|Systena CSIRT|Systena CSIRT|
|T-SIRT|Taisei SIRT|
|T2 CERT|TokyoTech CERT|
|TA-SIRT|TA-SIRT|
|TAKENAKA-SIRT|TAKENAKA SIRT|
|TC-CSIRT|Tokyo Century CSIRT|
|TC-SIRT|TOYOTA CONNECTED SIRT|
|TDC-CSIRT|TDC-CSIRT|
|TDU-CSIRT|Tokyo Denki University CSIRT|
|TED-CSIRT|TED-CSIRT|
|TEIJIN-CSIRT|TEIJIN CSIRT|
|TEL SIRT|Tokyo Electron Limited SIRT|
|TEPCO-SIRT|TEPCO SIRT|
|TEPSYS-SIRT|TEPSYS SIRT|
|TG CSIRT|TOKYO GAS CSIRT|
|TGC|TORAY CSIRT|
|THG CSIRT|TOHO GAS CSIRT|
|TIS-CSIRT|TIS-CSIRT|
|TKC|Tekken-CSIRT|
|TKK-CSIRT|TOKYU CORPORATION-CSIRT|
|TM-SIRT|Trend Micro SIRT|
|TMC-SIRT|Toyota Motor Corporation SIRT|
|TMHD-CSIRT|Tokio Marine Holdings CSIRT|
|TMN-CSIRT|Transaction Media Networks Inc. CSIRT|
|TOKAI-CSIRT|TOKAI GROUP CSIRT|
|TOMOWEL-CSIRT|TOMOWEL CSIRT|
|TOPPAN Edge CSIRT|TOPPAN Edge CSIRT|
|TOPPAN-CERT|TOPPAN CERT|
|TOSHIBA-SIRT|TOSHIBA-SIRT|
|TOTO-CSIRT|TOTO-CSIRT|
|TOYAL-CSIRT|TOYAL-CSIRT|
|TOYOBO-CSIRT|Toyobo CSIRT|
|TOYOKANETSU-CSIRT|TOYOKANETSU-CSIRT|
|TRG-CSIRT|TERILOGY CSIRT|
|TSUZUKI-CSIRT|TSUZUKI CSIRT|
|TTE-SIRT|Takasago Thermal Engineering SIRT|
|TTS-CSIRT|TOYOTA TSUSHO SYSTEMS CORPORATION CSIRT|
|TWMU-CSIRT|TWMU CSIRT|
|TX-CSIRT|NTT TechnoCross-CSIRT|
|Techtouch-SIRT|Techtouch SIRT|
|ToyoTanso-CSIRT|ToyoTanso-CSIRT|
|Trust Base-CSIRT|Trust Base-CSIRT|
|UACJ-SIRT|UACJ-SIRT|
|UL-CSIRT|UL-CSIRT|
|UNI-CSIRT|UNIPRES-CSIRT|
|URS-CSIRT|URSystems CSIRT|
|UTokyo-CERT|The University of Tokyo CERT|
|Usirt|USEN&U-NEXT GROUP sirt|
|VR-CSIRT|Video Research SIRT|
|Valuence-CSIRT|Valuence-CSIRT|
|VeriServe CSIRT|VeriServe CSIRT|
|Visional SIRT|Visional SIRT|
|W-CSIRT|NX Wanbishi Archives Corporation CSIRT|
|WBCSIRT|METAWATER Water Business Cloud Cyber SIRT|
|WHI-CSIRT|WHI-CSIRT|
|WILL-CSIRT|WILL GROUP Cyber SIRT|
|WINDs|Weins Incident Nimble Defense and response Specialists|
|WIRT|WIDE Incident Response Team|
|Wacoal-SIRT|Wacoal SIRT|
|Wing-SIRT|Wing-SIRT|
|Y-SIRT|Y-SIRT|
|YAMAHA-CSIRT|YAMAHA CSIRT|
|YAMATO-CSIRT|YAMATO Group CSIRT|
|YAZAKI-CSIRT|YAZAKI CSIRT|
|YKK-CSIRT|YKK CSIRT|
|YMC-CSIRT|Yamaha Motor Corpolation CSIRT|
|YOMIURI-SIRT|YOMIURI SIMBUN SIRT|
|YRC-CSIRT|YRC-CSIRT|
|Yakult-CSIRT|Yakult-CSIRT|
|Z-CSIRT|Zigexn-CSIRT|
|ZOC|ZO CSIRT|
|ZOZO CSIRT|ZOZO CSIRT|
|artience-CSIRT|artience Cyber SIRT|
|bitbank-sirt|bitbank SIRT|
|coopdeliCSIRT|coopdeliCSIRT|
|ctc-csirt|CHUBU TELECOMMUNICATIONS CSIRT|
|dip-CSIRT|dip-CSIRT|
|dit-CSIRT|dit-CSIRT|
|en-csirt|en-japan Cyber SIRT|
|freee-CSIRT|freee-CSIRT|
|iD-SIRT|IDgroup SIRT|
|iSEC-SIRT|iSEC-SIRT|
|k.CSIRT|kabu.com Cyber Security Incident Readiness Team|
|mediba CSIRT|mediba CSIRT|
|meiji-CSIRT|meiji-CSIRT|
|mixirt|mixi CSIRT|
|mpsol-csirt|MoneyPartners Solutions CSIRT|
|muRata CSIRT|muRata CSIRT|
|neos-CSIRT|neos-CSIRT|
|pixiv CSIRT|pixiv CSIRT|
|sdc-CSIRT|sdc-CSIRT|
|tdigroup-CSIRT|tdi Group CSIRT|
|transcosmos-CSIRT|transcosmos-CSIRT|
|7&i CSIRT|Seven & i CSIRT|
|7BK-CSIRT|Sevenbank CSIRT|
|7CE-CSIRT|Seven Cardservice CSIRT|
|>|!|
|日本レコード・キーピング・ネットワーク株式会社|NRK-CSIRT|
|株式会社ゲオホールディングス|GEO-CSIRT|
|パシフィックシステム株式会社|PACIFIC CSIRT|
|山田コンサルティンググループ株式会社|YCG-CSIRT|
|リコーリース株式会社|RL-CSIRT|
|アイホン株式会社|AIP-SIRT|
|横河電機株式会社|YokogawaSIRT|
|>|!|
|CDC : Cyber Defence Center
CERT : Computer Emergency Response Team
CIRT Cyber Incident Response Team
CSIRT : Computer Security Incident Response Team
SIRT : Security Incident Response Team|c
<<tiddler f_TabEU with: 'JPT_","JPP_' 'CSIRTs et personnes affiliées/Liaisons basés au Japon ' 'Any' 'jp' 'Japon' 'Entités'>>/%
|MaJ|NC9|
%/
<<tiddler f_TabEU with: 'JP_","1T_' 'CSIRTs et Liaisons au FIRST' 'All' 'jp' 'Japon' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Japon - CSIRTs et Liaisons Membres du FIRST]]>>
<<tabs tJPTFC 'Panorama' '' [[CSIRTs - JP - TF-CSIRT##Panorama]] 'Associate' '' [[CSIRTs - JP - TF-CSIRT##Associate]] 'Listed' '' [[CSIRTs - JP - TF-CSIRT##Listed]] 'Accredited' '' [[CSIRTs - JP - TF-CSIRT##Accredited]] 'Certified' '' [[CSIRTs - JP - TF-CSIRT##Certified]] 'Suspended' '' [[CSIRTs - JP - TF-CSIRT##Suspended]] 'Tous' '' [[CSIRTs - JP - TF-CSIRT##Tous]] >>
/%
!Panorama
<<tiddler f_Cc2T_1 with: 'JP' 'Japon'>>
!Associate
<<tiddler f_TabEU with: 'JP_","7_","7P_' '//Associates// TF-CSIRT' 'All' 'jp' 'Japon' 'Personne'>>
!Listed
<<tiddler f_TabEU with: 'JP_","7_","7L_' '//Listed// TF-CSIRT' 'All' 'jp' 'Japon' 'Entité'>>
!Accredited
<<tiddler f_TabEU with: 'JP_","7_","7A_' '//Accredited// TF-CSIRT' 'All' 'jp' 'Japon' 'Entité'>>
!Certified
<<tiddler f_TabEU with: 'JP_","7_","7C_' '//Certified// TF-CSIRT' 'All' 'jp' 'Japon' 'Entité'>>
!Suspended
<<tiddler f_TabEU with: 'JP_","7_","7S_' '//Suspended// TF-CSIRT' 'All' 'jp' 'Japon' 'Entité'>>
!Tous
<<tiddler f_TabEU with: 'JP_","7_' 'CSIRTs, //Associates// et //Liaisons//' 'All' 'jp' 'Japon' 'Entité'>>
!end
%/
<<tiddler .ReplaceTiddlerTitle with: [[Japon - CSIRTs et Associates de la TF-CSIRT]]>>
<<tabs Csirts 'Panorama' '' [[Communauté CSIRTs - Luxembourg - Intro]] 'cert.lu 🇱🇺' 'Association de CSIRTs du Luxembourg' [[Association - LU - cert.lu]] 'FIRST' '' [[CSIRTs - LU - FIRST]] 'TF-CSIRT' '' [[CSIRTs - LU - TF-CSIRT]] 'Tous' '' [[CSIRTs - LU - Tous]]>>/%
|n|Luxembourg|
%/
<<tiddler f_Cc2_C with: 'LU' 'Luxembourg' 'lu' 'cert.lu'>>
<<tabs AssLU 'Intro' 'Présentation cert.lu' [[Association - LU - cert.lu##Intro]] 'Membres' 'Membres cert.lu' [[Association - LU - cert.lu##Membres]]>>
/%
!Intro
<<tiddler f_CcAss with: 'cert.lu' 'LU' 'Luxembourg' 'Association - LU - cert.lu' '-' 'vise à améliorer la coopération entre les CSIRTs publics et privés du Luxembourg.'>>
!Membres
<<tiddler f_TabEU with: 'aLU_' 'CSIRTs membres du cert.lu' 'Any' 'LU' 'Luxembourg' 'CSIRTs'>>
!end
%//%
|n|cert.lu|
|d|LU|
|cct|lu|
|Pay|Luxembourg|
|f|🇱🇺|
|u|[[⇗|https://cert.lu/]]|
|Mem|[[⇗|https://cert.lu/#members]]|
|Png|[[⇗|https://cert.lu/#contact]]|
|q|<<tiddler f_NbAllny with: 'All' 'aLU_'>>|
|Tot|<<tiddler f_NbAllny with: 'All' 'LUT_'>>|
%/<<tiddler .ReplaceTiddlerTitle with: [[Luxembourg - Association des CSIRTs - cert.lu]]>>
<<tiddler f_TabEU with: 'LU_","1T_' 'CSIRTs et Liaisons au FIRST' 'All' 'lu' 'Luxembourg' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Luxembourg - CSIRTs et Liaisons Membres du FIRST]]>>
<<tabs tLUTFC 'Panorama' '' [[CSIRTs - LU - TF-CSIRT##Panorama]] 'Associate' '' [[CSIRTs - LU - TF-CSIRT##Associate]] 'Listed' '' [[CSIRTs - LU - TF-CSIRT##Listed]] 'Accredited' '' [[CSIRTs - LU - TF-CSIRT##Accredited]] 'Certified' '' [[CSIRTs - LU - TF-CSIRT##Certified]] 'Suspended' '' [[CSIRTs - LU - TF-CSIRT##Suspended]] 'Tous' '' [[CSIRTs - LU - TF-CSIRT##Tous]] >>
/%
!Panorama
<<tiddler f_Cc2T_1 with: 'LU' 'Luxembourg'>>
!Associate
<<tiddler f_TabEU with: 'LU_","7_","7P_' '//Associates// TF-CSIRT' 'All' 'lu' 'Luxembourg' 'Personne'>>
!Listed
<<tiddler f_TabEU with: 'LU_","7_","7L_' '//Listed// TF-CSIRT' 'All' 'lu' 'Luxembourg' 'Entité'>>
!Accredited
<<tiddler f_TabEU with: 'LU_","7_","7A_' '//Accredited// TF-CSIRT' 'All' 'lu' 'Luxembourg' 'Entité'>>
!Certified
<<tiddler f_TabEU with: 'LU_","7_","7C_' '//Certified// TF-CSIRT' 'All' 'lu' 'Luxembourg' 'Entité'>>
!Suspended
<<tiddler f_TabEU with: 'LU_","7_","7S_' '//Suspended// TF-CSIRT' 'All' 'lu' 'Luxembourg' 'Entité'>>
!Tous
<<tiddler f_TabEU with: 'LU_","7_' 'CSIRTs, //Associates// et //Liaisons//' 'All' 'lu' 'Luxembourg' 'Entité'>>
!end
%/
<<tiddler .ReplaceTiddlerTitle with: [[Luxembourg - CSIRTs et Associates de la TF-CSIRT]]>>
<<tiddler f_TabEU with: 'LUT_","LU_P_' 'CSIRTs et personnes affiliées/Liaisons basés au Luxembourg ' 'Any' 'lu' 'Luxembourg' 'Entités'>>/%
|MaJ|NC9|
%/
<<tiddler f_TabEU with: 'MC_' 'CSIRTs basés à Monaco' 'Any' 'eu' 'Monaco' 'Entités'>>/%
|n|Monaco|
%/
<<tiddler f_TabEU with: 'MC_","1T_' 'CSIRTs et Liaisons au FIRST' 'All' 'mc' 'Monaco' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Monaco - CSIRTs et Liaisons Membres du FIRST]]>>
<<tiddler f_TabEU with: 'MC_","7_' 'CSIRTs et Associates membres de la TF-CSIRT' 'All' 'mc' 'Monaco' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Monaco - CSIRTs et Associates de la TF-CSIRT]]>>
<<tabs Csirts 'Panorama' '' [[Communauté CSIRTs - Pays-Bas - Intro]] 'CERT.nl 🇱🇺' 'Association de CSIRTs des Pays-Bas' [[Association - NL - CERT.nl]] 'FIRST' '' [[CSIRTs - NL - FIRST]] 'TF-CSIRT' '' [[CSIRTs - NL - TF-CSIRT]] 'Tous' '' [[CSIRTs - NL - Tous]]>>/%
|n|Pays-Bas|
%/
<<tiddler f_Cc2_1 with: 'NL' 'Pays-Bas' 'nl' 'CERT.nl'>>
<<tabs AssNL 'Intro' 'Présentation CERT.nl' [[Association - NL - CERT.nl##Intro]] 'Membres' 'Membres CERT.nl' [[Association - NL - CERT.nl##Membres]]>>
/%
!Intro
<<tiddler f_CcAss with: 'CERT.nl' 'NL' 'Pays-Bas' 'Association - NL - CERT.nl' '-' 'regroupe des CSIRTs des Pays-Bas qui jouent un rôle actif au niveau opérationnel dans le domaine de la coordination des incidents soit sur des noms de domaine dans le domaine ".nl", soit sur des adresses IP qui sont enregistrées auprès de fournisseurs néerlandais selon la base de données RIPE.'>>
!Membres
<<tiddler f_TabEU with: 'aNL_' 'CSIRTs membres du CERT.nl' 'Any' 'NL' 'Pays-Bas' 'CSIRTs'>>
!end
%//%
|n|CERT.nl|
|d|NL|
|cct|nl|
|Pay|Pays-Bas|
|c|~2004|
|f|🇱🇺|
|u|[[⇗|https://www.cert.nl/]]|
|Mem|[[⇗|https://www.cert.nl/onderwerpen/certs]]|
|Png|[[⇗|https://www.cert.nl/contact]]|
|q|<<tiddler f_NbAllny with: 'All' 'aNL_'>>|
|Tot|<<tiddler f_NbAllny with: 'All' 'NLT_'>>|
%/<<tiddler .ReplaceTiddlerTitle with: [[Pays-Bas - Association des CSIRTs - CERT.nl]]>>
<<tiddler f_TabEU with: 'NL_","1T_' 'CSIRTs et Liaisons au FIRST' 'All' 'nl' 'Pays-Bas' 'Entité'>>
<<tiddler f_TabEU with: 'NL_","1P_' 'Liaisons au FIRST' 'All' 'nl' 'Pays-Bas' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Pays-Bas - CSIRTs et Liaisons Membres du FIRST]]>>
<<tabs tNLTFC 'Panorama' '' [[CSIRTs - NL - TF-CSIRT##Panorama]] 'Associate' '' [[CSIRTs - NL - TF-CSIRT##Associate]] 'Listed' '' [[CSIRTs - NL - TF-CSIRT##Listed]] 'Accredited' '' [[CSIRTs - NL - TF-CSIRT##Accredited]] 'Certified' '' [[CSIRTs - NL - TF-CSIRT##Certified]] 'Suspended' '' [[CSIRTs - NL - TF-CSIRT##Suspended]] 'Tous' '' [[CSIRTs - NL - TF-CSIRT##Tous]] >>
/%
!Panorama
<<tiddler f_Cc2T_1 with: 'NL' 'Pays-Bas' 'CERT.nl'>>
!Associate
<<tiddler f_TabEU with: 'NL_","7_","7P_' '//Associates// TF-CSIRT' 'All' 'nl' 'Pays-Bas' 'Personne'>>
!Listed
<<tiddler f_TabEU with: 'NL_","7_","7L_' '//Listed// TF-CSIRT' 'All' 'nl' 'Pays-Bas' 'Entité'>>
!Accredited
<<tiddler f_TabEU with: 'NL_","7_","7A_' '//Accredited// TF-CSIRT' 'All' 'nl' 'Pays-Bas' 'Entité'>>
!Certified
<<tiddler f_TabEU with: 'NL_","7_","7C_' '//Certified// TF-CSIRT' 'All' 'nl' 'Pays-Bas' 'Entité'>>
!Suspended
<<tiddler f_TabEU with: 'NL_","7_","7S_' '//Suspended// TF-CSIRT' 'All' 'nl' 'Pays-Bas' 'Entité'>>
!Tous
<<tiddler f_TabEU with: 'NL_","7_' 'CSIRTs, //Associates// et //Liaisons//' 'All' 'nl' 'Pays-Bas' 'Entité'>>
!end
%/
<<tiddler .ReplaceTiddlerTitle with: [[Pays-Bas - CSIRTs et Associates de la TF-CSIRT]]>>
<<tiddler f_TabEU with: 'NLT_","NLP_' 'CSIRTs et personnes affiliées/Liaisons basés au Pays-Bas ' 'Any' 'nl' 'Pays-Bas' 'Entités'>>/%
|MaJ|NC9|
%/
<<tabs Csirts 'Panorama' '' [[Communauté CSIRTs - Suède - Intro]] 'Svenskt CERT-Forum 🇸🇪' 'Association de CSIRTs des Suède' [[Association - SE - Svenskt CERT-Forum]] 'FIRST' '' [[CSIRTs - SE - FIRST]] 'TF-CSIRT' '' [[CSIRTs - SE - TF-CSIRT]] 'Tous' '' [[CSIRTs - SE - Tous]]>>/%
|n|Suède|
%/
<<tiddler f_Cc2_1 with: 'SE' 'Suède' 'se' 'Svenskt CERT-Forum'>>
<<tabs AssSE 'Intro' 'Présentation Svenskt CERT-Forum' [[Association - SE - Svenskt CERT-Forum##Intro]] 'Membres' 'Membres Svenskt CERT-Forum' [[Association - SE - Svenskt CERT-Forum##Membres]]>>
/%
!Intro
<<tiddler f_CcAss with: 'Svenskt CERT-Forum' 'SE' 'Suède' 'Association - SE - Svenskt CERT-Forum' '-' '(SCF) est un partenariat public-privé //informel// qui oeuvre pour la cyber et la construction de relations de confiance entre les membres participants. Les membres sont des CSIRTs basés en Suède et qui sont soit membres du FIRST, soit de la TF-CSIRT aux niveaux "accredited" ou "certified".'>>
!Membres
<<tiddler f_TabEU with: 'aSE_' 'CSIRTs membres du Svenskt CERT-Forum' 'Any' 'SE' 'Suède' 'CSIRTs'>>
!end
%//%
|c|2013|
|cct|se|
|d|SE|
|f|🇸🇪|
|Mem|[[⇗|https://certforum.se/index-en.html]]|
|n|Svenskt CERT-Forum|
|Pay|Suède|
|Png|-|
|q|<<tiddler f_NbAllny with: 'All' 'aSE_'>>|
|Tot|<<tiddler f_NbAllny with: 'All' 'SET_'>>|
|u|[[⇗|https://certforum.se/index-en.html]]|
%/
<<tiddler f_TabEU with: 'SE_","1T_' 'CSIRTs et Liaisons au FIRST' 'All' 'se' 'Suède' 'Entité'>>
<<tiddler f_TabEU with: 'SE_","1P_' 'Liaisons au FIRST' 'All' 'se' 'Suède' 'Entité'>>
<<tiddler .ReplaceTiddlerTitle with: [[Suède - CSIRTs et Liaisons Membres du FIRST]]>>
<<tabs tSETFC 'Panorama' '' [[CSIRTs - SE - TF-CSIRT##Panorama]] 'Associate' '' [[CSIRTs - SE - TF-CSIRT##Associate]] 'Listed' '' [[CSIRTs - SE - TF-CSIRT##Listed]] 'Accredited' '' [[CSIRTs - SE - TF-CSIRT##Accredited]] 'Certified' '' [[CSIRTs - SE - TF-CSIRT##Certified]] 'Suspended' '' [[CSIRTs - SE - TF-CSIRT##Suspended]] 'Tous' '' [[CSIRTs - SE - TF-CSIRT##Tous]] >>
/%
!Panorama
<<tiddler f_Cc2T_1 with: 'SE' 'Suède' 'Svenskt CERT-Forum'>>
!Associate
<<tiddler f_TabEU with: 'SE_","7_","7P_' '//Associates// TF-CSIRT' 'All' 'se' 'Suède' 'Personne'>>
!Listed
<<tiddler f_TabEU with: 'SE_","7_","7L_' '//Listed// TF-CSIRT' 'All' 'se' 'Suède' 'Entité'>>
!Accredited
<<tiddler f_TabEU with: 'SE_","7_","7A_' '//Accredited// TF-CSIRT' 'All' 'se' 'Suède' 'Entité'>>
!Certified
<<tiddler f_TabEU with: 'SE_","7_","7C_' '//Certified// TF-CSIRT' 'All' 'se' 'Suède' 'Entité'>>
!Suspended
<<tiddler f_TabEU with: 'SE_","7_","7S_' '//Suspended// TF-CSIRT' 'All' 'se' 'Suède' 'Entité'>>
!Tous
<<tiddler f_TabEU with: 'SE_","7_' 'CSIRTs, //Associates// et //Liaisons//' 'All' 'se' 'Suède' 'Entité'>>
!end
%/
<<tiddler .ReplaceTiddlerTitle with: [[Suède - CSIRTs et Associates de la TF-CSIRT]]>>
<<tiddler f_TabEU with: 'SET_","SEP_' 'CSIRTs et personnes affiliées/Liaisons basés au Suède ' 'Any' 'se' 'Suède' 'Entités'>>/%
|MaJ|NC9|
%/
|@@color:#000091;<html><i class='fa fa-2x fa-person-digging'</i></html> … Liste ''non exhaustive'' de différents groupes ou associations de CSIRTs … <html><i class='fa fa-2x fa-person-digging'</i></html>@@|c
|!Zone|!Associations|!Associations nationales
ou gouvernementales|h
|Pays|[[InterCERT France|Association - FR - InterCERT France]] @@font-size:125%;🇫🇷@@, [[cert.lu|Association - LU - cert.lu]] @@font-size:125%;🇱🇺@@, [[CERT.nl|Association - NL - CERT.nl]] @@font-size:125%;🇳🇱@@, [[CSIRT.es|Association - ES - CSIRT.es]] 🇪🇸
[[NCA|Association - JP - NCA]] @@font-size:125%;🇯🇵@@…
((AT(^Autriche -- CERT-Verbund Austria))) [[⇗|https://www.onlinesicherheit.gv.at/Themen/Erste-Hilfe/CERTs/CERT-Verbund-Oesterreich.html]], ((BE(^Belgique -- Belgian Cyber Security Coalition))) [[⇗|https://www.cybersecuritycoalition.be/]], ((DE(^Allemagne -- CERT-Verbund))) [[⇗|https://www.cert-verbund.de/]], ((NL(^Pays-Bas -- cert.nl))), ((PL(^Pologne -- Polish Bank Association))), ((PT(^Portugal -- RNCSIRT
Rede National CSIRT))) [[⇗|https://www.redecsirt.pt/]], ((SE(^Suède -- Svenskt CERT-Forum
⇒ En octobre 2023,il y avait ''16'' membres.))) [[⇗|https://certforum.se/index-en.html]], …|CSIRTs régionaux, CSIRTs sectoriels…|
|Europe|[[TF-CSIRT|Association - TF-CSIRT]] [[⇗|https://tf-csirt.org/]], des [[ISACs|https://www.isacs.eu/]] …|[[EGC Group|Association - EGC Group]]+++[»]...<<tiddler [[Association - EGC Group]]>>===[[⇗|https://egc-group.org/]], [[CSIRTs Network|Association - CSIRTs Network]]+++[»]...<<tiddler [[Association - CSIRTs Network]]>>===[[⇗|https://csirtsnetwork.eu/]]|
|Afrique|[[AfricaCERT|Association - AfricaCERT]]+++[»]...<<tiddler [[Association - AfricaCERT]]>>===[[⇗|https://www.africacert.org/]], [[TrustBroker Africa|Association - TrustBroker Africa]]+++[»]...<<tiddler [[Association - TrustBroker Africa]]>>===[[⇗|https://www.trustbroker.africa/about.html]]||
|Amériques|((LACNIC CSIRT(⇒ En octobre 2023, il y avait ''86'' membres répartis sur ''16'' pays))) [[⇗|https://csirt.lacnic.net/en/csirts-of-the-region]], [[National Council of ISACs|Association - National Council of ISACs]] [[⇗|https://www.nationalisacs.org/]] …|((CSIRTAmericas(Network of Government CSIRT of the Member States of the AOS/Organization of American States
⇒ En octobre 2023, il y avait ''46'' [[membres|https://csirtamericas.org/en/member_teams]] répartis entre ''21'' pays.
⇒ AR, BB, BO, BR, CA, CL, CO, CR, DO, ZC, GT, GY, JM, MX, PA, PE, PY, SR, TT, US, UY))) [[⇗|https://csirtamericas.org/en]]|
|Asie|((APCERT(^''Asia Pacific CERT''
⇒ En octobre 2023, il y avait ''33'' [[membres|https://www.apcert.org/about/structure/members.html]] répartis sur ''24'' pays.))) [[⇗|https://www.apcert.org/]] …||
|Pacifique|[[PaCSON|Association - PaCSON]] [[⇗|https://PaCSON.org/]] …||
|Monde|[[FIRST|Association - FIRST]] [[⇗|https://first.org]], [[National Council of ISACs|Association - National Council of ISACs]] [[⇗|https://www.nationalisacs.org/]], [[OIC-CERT|Association - OIC-CERT]]+++[»]...<<tiddler [[Association - OIC-CERT]]>>===[[⇗|https://www.oic-cert.org/en/]] …|((NatCSIRTs(^Association of CSIRTs with National Responsibility))) [[⇗|https://resources.sei.cmu.edu/news-events/events/natcsirt/]], [[IWWN |Association - IWWN]]+++[»]...<<tiddler [[Association - IWWN]]>>=== |
/% ((OIC-CERT(Organisation of the Islamic Cooperation – Computer Emergency Response Teams
⇒ En octobre 2023, il y avait ''59'' membres, ''3'' liaisons
⇒ 29 pays : AE, AZ, BD, BH, BN, CI, EG, ID, IR, JO, KG, KW, KZ, LY, MA, MY, NG, OM, PK, QA, SA, SD, SO, SY, TN, TR, UG, UZ, YE))) [[⇗|https://www.oic-cert.org/en/]]
|MaJ|O1R|
%/
!Liste (non exhaustive) de <<tiddler f_NbAllny with: 'Any' 'af_'>> CSIRTs basés en Afrique
La répartition des adhésions à des associations de CSIRTs :{{ss2col{
* ''<<tiddler f_NbAllny with: 'All' 'af_","7_'>>'' membres de la [[TF-CSIRT|Association - TF-CSIRT]]
* ''<<tiddler f_NbAllny with: 'All' 'af_","1T_'>>'' membres du [[FIRST|Association - FIRST]]
* ''<<tiddler f_NbAllny with: 'All' 'af_","99_'>>'' membres de l'[[OIC-CERT|Association - OIC-CERT]]
* ''<<tiddler f_NbAllny with: 'All' 'af_","44_'>>'' membres de l'[[AfricaCERT|Association - AfricaCERT]]
* ''<<tiddler f_NbAllny with: 'All' 'af_","47_'>>'' membres de la [[TrustBroker Africa|Association - TrustBroker Africa]]
* ''<<tiddler f_NbAllny with: 'All' 'af_","44_","47_'>>'' membres de l'[[AfricaCERT|Association - AfricaCERT]] et de la [[TrustBroker Africa|Association - TrustBroker Africa]]
}}}<<tiddler f_TabAfr with: 'af_' Any 'CSIRTs basés en Afrique'>>/%
|n|Afrique|
%/
[>img[iCSIRT/AfricaCERT.jpg]]L'AfricaCERT est historiquement la première association de CSIRTs du [[continent africain|Communauté CSIRTs - Afrique]].
Les ''<<tiddler f_NbAllny with: 'All' '44_'>>'' membres de l'[[AfricaCERT|Association - AfricaCERT]] couvrent ''27'' pays et sont répartis en :
* ''<<tiddler f_NbAllny with: 'All' '44_","47_'>>'' sont aussi membres de la [[TrustBroker Africa|Association - TrustBroker Africa]]
* ''<<tiddler f_NbAllny with: 'All' '44_","1T_'>>'' sont aussi membres du [[FIRST|Association - FIRST]]
Liens :
* Portail de l'AfricaCERT : [[⇗|https://www.africacert.org/]]
* Liste des membres de l'AfricaCERT : [[⇗|https://www.africacert.org/african-csirts/]]
<<tiddler f_TabAll with: '44_' All 'CSIRTs membres de l\'AfricaCERT'>>/%
|n|AfricaCERT|
|z|AF|
%/
[>img[iCSIRT/TrustBrokerAfrica.png]]La "TrustBroker Africa" est une association de CSIRTs du continent africain, créée en 2022.+++[»]> //The [[TrustBroker Africa ⇗|https://www.trustbroker.africa/about.html]] Service is operated by [[WACREN ⇗|https://www.wacren.net/]], in partnership with sister regional networks, [[Ubuntunet Alliance ⇗|https://ubuntunet.net/]] and [[ASREN ⇗|https://www.asrenorg.net/]] as part of the [[AfricaConnect3 project ⇗|https://www.africaconnect3.net/]] which is co-funded by the European Union.//
Pour en savoir plus : https://www.trustbroker.africa/about.html ===
Les ''<<tiddler f_NbAllny with: 'Any' '47_'>>'' membres de la [[TrustBroker Africa|Association - TrustBroker Africa]] couvrent ''7'' pays et sont répartis en :
* ''<<tiddler f_NbAllny with: 'All' '47_","44_'>>'' sont aussi membres de l'[[AfricaCERT|Association - AfricaCERT]]
* ''<<tiddler f_NbAllny with: 'All' '47_","1T_'>>'' sont aussi membres du [[FIRST|Association - FIRST]]
Lien vers le portail de la TrustBroker Africa : [[⇗|https://www.trustbroker.africa/about.html]]
<<tiddler f_TabAll with: '47_' All 'CSIRTs membres de la TrustBroker Africa'>>/%
|n|TrustBroker Africa|
|q|10|
|z|AF|
%/
!Liste (non exhaustive) de <<tiddler f_NbAllny with: 'Any' 'oc_'>> CSIRTs basés en Océanie
La répartition des adhésions à des associations de CSIRTs :
{{ss2col{
* ''<<tiddler f_NbAllny with: 'All' 'oc_","1T_'>>'' membres du [[FIRST|Association - FIRST]]
* ''<<tiddler f_NbAllny with: 'All' 'oc_","49_'>>'' membres du PaCSON
}}}<<tiddler f_TabOce with: 'oc_' Any 'CSIRTs basés en Océanie'>>/%
|n|Océanie|
%/
!Liste (NON EXHAUSTIVE) de <<tiddler f_NbAllny with: 'Any' 'na_'>> CSIRTs basés en Amérique du Nord
La répartition des adhésions à des associations de CSIRTs :
{{ss2col{
* ''<<tiddler f_NbAllny with: 'All' 'na_","1T_'>>'' membres [[FIRST|Association - FIRST]]
* ''<<tiddler f_NbAllny with: 'All' 'na_","41_'>>'' membres [[CSIRTAmericas Network|Association - CSIRTAmericas Network]]
}}}<<tiddler f_TabAll with: 'na_' Any 'CSIRTs basés en Amérique du Nord'>>/%
|MaJ|O9B|
|n|Amérique du Nord|
|z|NA|
%/
!Liste (NON EXHAUSTIVE) de <<tiddler f_NbAllny with: 'Any' '58_'>> CSIRTs basés en Amérique Centrale
La répartition des adhésions à des associations de CSIRTs :
{{ss2col{
* ''<<tiddler f_NbAllny with: 'All' '58_","1T_'>>'' membres [[FIRST|Association - FIRST]]
* ''<<tiddler f_NbAllny with: 'All' '58_","41_'>>'' membres [[CSIRTAmericas Network|Association - CSIRTAmericas Network]]
}}}<<tiddler f_TabAll with: '58_' Any 'CSIRTs basés en Amérique Centrale'>>/%
|MaJ|O9B|
|n|Amérique Centrale|
|z|ca|
%/
!Liste (NON EXHAUSTIVE) de <<tiddler f_NbAllny with: 'Any' '59_'>> CSIRTs basés en Amérique du Sud
La répartition des adhésions à des associations de CSIRTs :
{{ss2col{
* ''<<tiddler f_NbAllny with: 'All' '59_","1T_'>>'' membres [[FIRST|Association - FIRST]]
* ''<<tiddler f_NbAllny with: 'All' '59_","41_'>>'' membres [[CSIRTAmericas Network|Association - CSIRTAmericas Network]]
}}}<<tiddler f_TabAll with: '59_' Any 'CSIRTs basés en Amérique du Sud'>>/%
|MaJ|O9B|
|n|Amérique du Sud|
|z|sa|
%/
<<tiddler [[CSIRTs - Gov+Nat]]>>/%
|n|tbd|
%/
<<tabs tGovNat 'Panorama' '' [[CSIRTs - Gov+Nat##Panorama]] 'Afrique' '' [[CSIRTs - Gov+Nat##Afrique]] 'Amérique du Nord' '' [[CSIRTs - Gov+Nat##AmerN]] 'Amérique Centrale' '' [[CSIRTs - Gov+Nat##AmerC]] 'Amérique du Sud' '' [[CSIRTs - Gov+Nat##AmerS]] 'Asie' '' [[CSIRTs - Gov+Nat##Asie]] 'Europe' '' [[CSIRTs - Gov+Nat##Europe]] 'Océanie' '' [[CSIRTs - Gov+Nat##Oceanie]]>>
/%
!Panorama
La liste de ''<<tiddler f_NbAllny with: 'Any' '_N'>>'' CSIRTs gouvernementaux ou nationaux basée sur des éléments agrégés de sources telles que :
* FIRST, TF-CSIRT, EGC, CSIRTs Network, [[AfricaCERT|https://www.africacert.org/african-csirts/]], [[TrustBrooker Africa|https://www.trustbroker.africa/registry/alpha_LICSA.html]], [[LacNic|https://csirt.lacnic.net/en/csirts-of-the-region]], [[OIC-CERT|https://www.oic-cert.org/en/allmembers.html]], [[PaCSON|https://pacson.org/members]], ITU
* et complétée par des connaissances personnelles…
La répartition par continent est la suivante : //^^(voir détails dans les onglets ci-contre)^^//
| Afrique | Amérique du Nord | Amérique Centrale | Amérique du Sud | Asie | Europe | Océanie |
| <<tiddler f_NbAllny with: 'All' '_N","af_'>> | <<tiddler f_NbAllny with: 'All' '_N","na_'>> | <<tiddler f_NbAllny with: 'All' '_N","58_'>> | <<tiddler f_NbAllny with: 'All' '_N","59_'>> | <<tiddler f_NbAllny with: 'All' '_N","AS_'>> | <<tiddler f_NbAllny with: 'All' '_N","eu_'>> | <<tiddler f_NbAllny with: 'All' '_N","oc_'>> |
!Afrique
<<tiddler f_TabAll with: '_N","af_' All 'CSIRTs référencés à ce jour en Afrique'>>
!AmerN
<<tiddler f_TabAll with: '_N","na_' All 'CSIRTs référencés à ce jour en Amérique du Nord'>>
!AmerC
<<tiddler f_TabAll with: '_N","58_' All 'CSIRTs référencés à ce jour en Amérique Centrale'>>
!AmerS
<<tiddler f_TabAll with: '_N","59_' All 'CSIRTs référencés à ce jour en Amérique du Sud'>>
!Asie
<<tiddler f_TabAll with: '_N","AS_' All 'CSIRTs référencés à ce jour en Asie'>>
!Europe
<<tiddler f_TabAll with: '_N","eu_' All 'CSIRTs référencés à ce jour en Europe'>>
!Oceanie
<<tiddler f_TabAll with: '_N","oc_' All 'CSIRTs référencés à ce jour en Océanie'>>
!end
|z|∞|
%/
<<tabs tEGC 'Présentation EGC Group' '' [[Association - EGC Group - Présentation]] 'Membres' '' [[Association - EGC Group - Membres]]>>/%
|n|EGC Group|
|#|3|
|q|<<tiddler f_NbAllny with: 'Any' '76_'>>|
|d|EU|
|z|eu|
%/
[>img(auto,40px)[iCSIRT/EGC-Group.png]]''EGC Group'' (//European Government CERTs//) est une association restreinte et informelle de ''<<tiddler [[Association - EGC Group::q]]>>'' CSIRTs gouvernementaux (et parfois nationaux) européens.
Il s'agit d'un groupe opérationnel et de partage technique.
@@color:#000091;▬▬▬▬@@
* Le site de l'''EGC Group'' : ''[[EGC-Group.org ⇗|https://egc-group.org/]]''
<<tiddler f_TabAll with: '76_' All 'CSIRTs gouvernementaux européens membres de l\'EGC Group'>>
<<tabs tCSN 'Présentation CSIRTs Network' '' [[Association - CSIRTs Network - Présentation]] 'Membres' '' [[Association - CSIRTs Network - Membres]]>>/%
|n|CSIRTs Network|
|q|<<tiddler f_NbAllny with: 'Any' '75_'>>|
|d|EU|
|z|eu|
%/
[>img(auto,100px)[iCSIRT/CSIRTsNetwork.png]]Le CSIRTs Network de l'Union européenne est un réseau composé des CSIRT désignés par les États membres de l'UE ainsi que du CERT-EU. La Commission européenne participe au réseau en tant qu'observateur.
Les missions du CSIRTs Network sont :
* d'échanger des informations et d'instaurer la confiance au sein de l'UE
* discuter et, si possible, mettre en œuvre une réponse coordonnée face à un incident
* fournir aux États membres de l'UE une assistance pour faire face aux incidents transfrontaliers
* coopérer et échanger les bonnes pratiques en matière de réponse aux incidents
* fournir une assistance aux CSIRT désignés pour la divulgation coordonnée des vulnérabilités susceptibles d'avoir un impact significatif sur des entités situées dans plusieurs États membres de l'UE.
Le CSIRTs Network qui a commencé ses activités en 2016 a été créé dans le cadre de l'article 12 de la Directive NIS. En 2023, le rôle du CSIRTs Network a été renforcé par la directive NIS2 afin de contribuer au développement de la confiance et de promouvoir une coopération opérationnelle rapide et efficace entre les États membres.
L'ENISA apport son soutien logistique au CSIRTs Network en fournissant des services de secrétariat, des infrastructures et des outils pour faciliter la coopération, le partage d'informations et le fonctionnement quotidien.
Le CSIRTs Network comprend ''<<tiddler [[Association - CSIRTs Network::q]]>>'' membres répartis entre les ''27'' états membres de l'Union Européenne. (voir ci-dessous)
@@color:#000091;▬▬▬▬@@
* Le site du CSIRTs Network : ''[[CSIRTsNetwork.EU ⇗|https://csirtsnetwork.eu/]]''
* Le répertoire GitHub du CSIRTs Network (dont les avis de sécurité depuis 2021) : [[GitHub.com/enisaeu/CNW ⇗|https://github.com/enisaeu/CNW]]
<<tiddler f_TabAll with: '75_' Any 'CSIRTs membres du CSIRTs Network'>>
[>img(200px,auto)[i/first-org.png]]Le Forum of Incident Response and Security Teams (FIRST) est une association mondiale qui regroupe des CSIRTs, des PSIRTs et membres individuels (//Liaisons//) qui traitent de réponse aux incidents et de sécurité (au sens large du terme).
Le FIRST a été fondé en tant que groupe informel par plusieurs CSIRTs, puis s'est constitué en société à but non lucratif aux États-Unis en 1995.
Le site Web du FIRST est : [[FIRST.org ⇗|https://FIRST.org]].
Le FIRST organise une conférence globale annuelle (en juin), des conférences thématiques (CTI …), des événements régionaux (Regional Symposia, Technical Colloquia …), des formations … et a des programmes pour le développement des équipes de traitement des incidents dans le monde (Fellowship Program …).
Le dynamisme du FIRST se trouve aussi dans la trentaine de groupe de travail appelés "SIGs" (Special Interest Groups). +++[Détails ⇒] {{ss2col{
# ''Working Groups''
** [[Academic Security SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/academicsec]]
** [[Automation SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/automation]]
** [[Big Data SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/bigdata]]
** [[CSIRT Framework Development SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/csirt]]
** [[Cyber Insurance SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/cyberinsurance]]
** [[Cyber Threat Intelligence SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/cti]]
** [[Digital Safety SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/digital-safety]]
** [[DNS Abuse SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/dns]]
** [[Ethics SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/ethics]]
** [[FIRST Multi-Stakeholder Ransomware SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/msr]]
** [[Human Factors in Security SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/hfs/]]
** [[Information Sharing SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/information-sharing]]
** [[Law Enforcement SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/le/]]
** [[Malware Analysis|https://www.first.org/global/sigs/academicsecglobal/sigs/malware]]
** [[NETSEC SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/netsec]]
** [[PSIRT SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/psirt]]
** [[Red Team SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/red-team]]
** [[Retail and Consumer Packaged Goods (CPG) SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/cpg/]]
** [[Security Lounge SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/ctf]]
** [[Threat Intel Coalition SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/tic/]]
** [[Transportation and Mobility SIG|https://www.first.org/global/sigs/academicsecglobal/sigs/transport]]
** [[Vulnerability Coordination|https://www.first.org/global/sigs/academicsecglobal/sigs/vulnerability-coordination]]
** [[Vulnerability Reporting and Data Exchange|https://www.first.org/global/sigs/academicsecglobal/sigs/vrdx]]
** [[Women of FIRST|https://www.first.org/global/sigs/academicsecglobal/sigs/wof/]]
# ''Standards Groups''
** [[Common Vulnerability Scoring System (CVSS)|https://www.first.org/global/sigs/academicseccvss]]
** [[Exploit Prediction Scoring System (EPSS)|https://www.first.org/global/sigs/academicsecepss]]
** [[Information Exchange Policy|https://www.first.org/global/sigs/academicsecglobal/sigs/iep]]
** [[Passive DNS Exchange|https://www.first.org/global/sigs/academicsecglobal/sigs/passive-dns]]
** [[Traffic Light Protocol (TLP)|https://www.first.org/global/sigs/academicsecglobal/sigs/tlp]]
# ''Discussion Groups''
** [[AI Security|https://www.first.org/global/sigs/academicsecglobal/sigs/ai-security]]
** [[Industrial Control Systems (ICS)|https://www.first.org/global/sigs/academicsecglobal/sigs/ics]]
** [[Metrics|https://www.first.org/global/sigs/academicsecglobal/sigs/metrics]]
}}} ===
Début ''<<tiddler [[f_MA]]>>'', le FIRST compte ''<<tiddler [[Association - FIRST::q]]>>'' membres répartis en :
* ''<<tiddler [[Association - FIRST::QtT]]>>'' équipes dont ''<<tiddler f_NbAllny with: 'All' 'FR_","1T_'>>'' françaises
* ''<<tiddler [[Association - FIRST::QtP]]>>'' Liaisons dont ''<<tiddler f_NbAllny with: 'All' 'FR_","1P_'>>'' français
Les pays les plus représentés sont : les États-Unis, l'Espagne, le Japon, l'Allemagne, la France et la Norvège +++[Détails ⇒]
|Pays|Total|Équipes|Liaisons|
|US| 161| 105| 56|
|ES| 49| 62| 7|
|JP| 46| 45| 1|
|DE| 31| 39| 10|
|FR| 30| 26| 3|
|NO| 29| 26| 5|
|CO| 27| 25| 0|
|MX| 25| 25| 0|
|TW| 25| 25| 2|
|CH| 20| 24| 6|
|GB| 19| 20| 0|
|IT| 17| 17| 2|
|DK| 16| 15| 2|
|PE| 15| 14| 0|
|SG| 14| 13| 2|
|SE| 14| 12| 1|
|NL| 14| 10| 6|
|PL| 13| 10| 0|
|BE| 12| 9| 5|
|CN| 10| 9| 0|
|EC| 10| 9| 1|
|KR| 9| 9| 0|
|RU| 9| 8| 1|
|AT| 9| 7| 2|
|BR| 9| 7| 1|
|CA| 8| 7| 5|
|CL| 8| 7| 0|
|SA| 7| 7| 0|
|AU| 7| 6| 8|
|CZ| 7| 6| 2|
|LT| 7| 6| 1|
|AE| 7| 5| 2|
|EU| 7| 5| 2|
|KZ| 6| 5| 0|
|PT| 6| 5| 1|
===.
/%
|Bss|-|
|b|-|
|CTI|-|
|d|∞|
|Git|-|
|IOC|-|
|l|[[⇗|https://www.linkedin.com/company/firstdotorg/]]|
|L|[[⇗|https://www.linkedin.com/company/firstdotorg/posts/?feedView=all]]|
|M|[[⇗|https://infosec.exchange/@firstdotorg]]|
|MaJ|O81|
|Mdm|-|
|Mtd|-|
|Nws|-|
|n|FIRST ((*(Forum of Incident Response and Security Teams)))|
|QtD|12.2024|
|QtP|176|
|QtT|762|
|q|938|
|Rpt|-|
|Tru|10|
|Twi|-|
|u|[[⇗|https://FIRST.org]]|
|You|[[⇗|https://www.youtube.com/@FIRSTdotorg]]|
|z|∞|
|§|FIRST|
|En nombre d'équipes|En nombre de membres Liaisons|h
|États-Unis (105)|
|Espagne (62), Japon (45), Allemagne (39)|États-Unis (56)|
|France (<<tiddler f_NbAllny with: 'All' 'FR_","1T_'>>), Norvège (26), Colombie, Mexique, Taiwan (25), Suisse (24), Royaume-Uni (20)||
|Italie (17), Danemark (15), Pérou (14), Singapour (13), Suède (12), Pays-Bas, Pologne (10)|Royaume-Uni (14), Allemagne (10)|
|Belgique, Chine, Equateur, Corée (9) …|Australie (8), Espagne (7), Pays-Bas, Suisse (6) …|
%/
/%
|b|-|
|Bss|-|
|CTI|-|
|d|∞|
|Git|-|
|IOC|-|
|l|-|
|L|[[⇗|/posts/?feedView=all]]|
|Mdm|-|
|Mtd|-|
|Nws|-|
|n|GFCE ((*(Global Forum on Cyber Expertise)))|
|Rpt|-|
|§|GFCE|
|Tru|8|
|Twi|-|
|u|[[⇗|https://TheGFCE.org/]]|
|You|-|
|z|∞|
%/
<<tabs tTFC 'Présentation TF-CSIRT' '' [[Association - TF-CSIRT - Présentation]] 'Certified' '' [[Association - TF-CSIRT##Certified]] 'Accredited' '' [[Association - TF-CSIRT##Accredited]] 'Listed' '' [[Association - TF-CSIRT##Listed]] 'Associate' '' [[Association - TF-CSIRT##Associate]]>>/%
|#|7|
|b|-|
|Bss|-|
|CTI|-|
|Git|-|
|IOC|-|
|l|[[⇗|https://www.linkedin.com/company/tf-csirt/]]|
|L|[[⇗|https://www.linkedin.com/company/tf-csirtposts/?feedView=all]]|
|MaJ|O81|
|Mdm|-|
|Mtd|-|
|Nws|-|
|n|TF-CSIRT|
|QtD|16.12.2024|
|QtA|274|
|QtC|54|
|q|556|
|QtL|218|
|QtP|21|
|QtS|6|
|QtT|546|
|Rpt|-|
|§|TI|
|Tru|10|
|Twi|-|
|u|[[⇗|https://TF-CSIRT.org/]]|
|You|-|
|ZoneGeo|Europe|
|z|∞|
!Certified
<<tiddler f_TabAll with: '7C_' Any 'CSIRTs "Certified" membres de la TF-CSIRT'>>
!Accredited
@@color:#000091;<html><i class='fa fa-2x fa-person-digging'</i></html> … Liste de ''<<tiddler f_NbAllny with: 'Any' '7A_'>>''/<<tiddler [[Association - TF-CSIRT::QtA]]>> CSIRTs membres de la TF-CSIRT … <html><i class='fa fa-2x fa-person-digging'</i></html>@@^^Mises à jour complémentaires d'ici à février 2025 …^^
<<tiddler f_TabAll with: '7A_' Any 'CSIRTs "Accredited" membres de la TF-CSIRT'>>
!Listed
@@color:#000091;<html><i class='fa fa-2x fa-person-digging'</i></html> … Liste de ''<<tiddler f_NbAllny with: 'Any' '7P_'>>''/<<tiddler [[Association - TF-CSIRT::QtL]]>> CSIRTs membres de la TF-CSIRT … <html><i class='fa fa-2x fa-person-digging'</i></html>@@^^Mises à jour complémentaires d'ici à février 2025 …^^
<<tiddler f_TabAll with: '7P_' Any 'CSIRTs "Listed" membres de la TF-CSIRT'>>
!Associate
@@color:#000091;<html><i class='fa fa-2x fa-person-digging'</i></html> … Liste de ''<<tiddler f_NbAllny with: 'Any' '7P_'>>''/<<tiddler [[Association - TF-CSIRT::QtP]]>> membres de la TF-CSIRT à titre personnel … <html><i class='fa fa-2x fa-person-digging'</i></html>@@^^Mises à jour complémentaires d'ici à février 2025 …^^
<<tiddler f_TabAll with: '7P_' Any 'CSIRTs "Associates" membres de la TF-CSIRT'>>
!end
%/
[>img(200px,auto)[iCSIRT/TF-CSIRT.png]]La TF-CSIRT est une association qui promeut la collaboration et la coordination entre les CSIRTs en Europe, mais est aussi ouverte aux CSIRTs d'autres continents. Elle compte des membres dans plus de 60 pays, principalement européens.
TF-CSIRT, Trusted Introducer et TRANSITS sont maintenant gérés par l'''[[Open CSIRT Foundation|Fondation - OpenCSIRT Foundation]]''
Il y a 4 statuts de membres :
# ''Listed'' : le niveau de départ, dès que l'on rejoint la TF-CSIRT +++[détails »]... Extrait :
https://www.trusted-introducer.org/processes/registration.html
> //If your team would like to become part of the TI community: Your team needs to become "TI listed"! The process is simple enough and once you have secured your sponsors it will take 4 to 5 weeks to conclude a vote of the TI community and inform you about the outcome.// ===
# ''Accredited'' : pour les CSIRTs plus matures +++[détails »]... Extrait : https://www.trusted-introducer.org/processes/accreditation.html
> //Only already "listed" teams can become accredited. Any registered team that is serious about it's service can gain accreditation. Accreditation is performed by the TI following a standardised process which takes between one and four months, depending on the current status and preparation as well as the feedback received during this process.// ===
# ''Certified'' : pour les CSIRTs très matures et après audit SIM3 +++[détails »]... Extrait : https://www.trusted-introducer.org/processes/certification.html
> //This is the next step in the TI Team Maturity model, as the certification is meant for those TI Accredited teams who have internal and/or external reasons to have their maturity level gauged in an independent way.//
> //A candidate for TI Certification is already a TI Accredited team in good standing - i.e. fulfilling their accreditation obligations for at least eight months, has two team representatives and updated their team data at least within the last four month. As the certification process is a lengthly process involving a on-site full-day workshop, the overall time period allowed is 12 month.// ===
# ''Associate'' : pour des personnes actives dans la communauté des CSIRTs depuis plusieurs années, mais ne faisant parfois plus partie d'un CSIRT +++[détails »]... Extrait : https://www.trusted-introducer.org/processes/associates.html
> //These are individuals whose experience and/or skills can be of clear benefit to the TF-CSIRT/TI Community, but who are not member of an TI Accredited team (anymore) and thus cannot contribute through their team (anylonger).// ===
À noter : certaines équipes sont suspendues/"//suspended//" pour différentes raisons.
Site Web : [[TF-CSIRT.org ⇗|https://TF-CSIRT.org/]]
* Liste des CSIRTs members : https://trusted-introducer.org/directory/teams.html
** Astuce pour accéder directement à la liste des membres pour un pays donné
*** {{{ https://trusted-introducer.org/directory/teams.html#url=c%3DXX%26q%3D }}} avec "{{{ XX }}}" le [[code pays /ccTLD|Codes - Pays]] (norme ISO 3166-2).
Au ''<<tiddler [[Association - TF-CSIRT::QtD]]>>'', il y a ''<<tiddler [[Association - TF-CSIRT::QtC]]>>'' CSIRTs ''certifiés'', et ''10'' qui suivent le processus de certification.
----
|Au <<tiddler [[Association - TF-CSIRT::QtD]]>>, ''<<tiddler f_NbAllny with: 'Any' '7T_","7P_'>>'' CSIRTs et Associates [[TF-CSIRT|Association - TF-CSIRT]] sur ce site.
Les mises à jour complémentaires seront faites d'ici à février 2025 …|c
|!Statuts| //Certified// | //Accredited// | //Listed// | //Associates// | //Suspended// | Total |
|!Quantités| ''<<tiddler f_NbAllny with: 'Any' '7C_'>>'' sur <<tiddler [[Association - TF-CSIRT::QtC]]>> | ''<<tiddler f_NbAllny with: 'Any' '7A_'>>'' sur <<tiddler [[Association - TF-CSIRT::QtA]]>> | ''<<tiddler f_NbAllny with: 'Any' '7P_'>>'' sur <<tiddler [[Association - TF-CSIRT::QtL]]>> | ''<<tiddler f_NbAllny with: 'Any' '7P_'>>'' sur <<tiddler [[Association - TF-CSIRT::QtP]]>> | ''<<tiddler f_NbAllny with: 'Any' '7S_'>>'' sur <<tiddler [[Association - TF-CSIRT::QtS]]>> | ''<<tiddler f_NbAllny with: 'Any' '7T_","7P_'>>'' sur <<tiddler [[Association - TF-CSIRT::q]]>> |
|!Listes|+++[»]...{{ss2col{<<tiddler f_OlAllny with: 'All' '7C_'>>}}}=== |+++[»]...{{ss2col{<<tiddler f_OlAllny with: 'All' '7A_'>>}}}=== |+++[»]...{{ss2col{<<tiddler f_OlAllny with: 'All' '7P_'>>}}}=== |+++[»]...{{ss2col{<<tiddler f_OlAllny with: 'All' '7P_'>>}}}=== |+++[»]...{{ss2col{<<tiddler f_OlAllny with: 'All' '7S_'>>}}}=== |+++[»]...{{ss2col{<<tiddler f_OlAllny with: 'Any' '7C_","7A_","7P_","7P_","7S_'>>}}}=== |
L'''OIC'' est l'//Organisation of Islamic Cooperation// ((*(Français : Organisation de la Coopération Islamique (OCI)
Arabe : منظمة التعاون الإسلامي
Anglais : Organisation of Islamic Cooperation (OIC)
----
Les 57 pays membres de l'OIC sont : Afghanistan, Albanie, Algérie, Arabie saoudite, Azerbaïdjan, Bahreïn, Bangladesh, Bénin, Brunei, Burkina Faso, Cameroun, Comores, Côte d'Ivoire, Djibouti, Égypte, Émirats arabes unis, Gabon, Gambie, Guinée, Guinée-Bissau, Guyana, Indonésie, Irak, Iran, Jordanie, Kazakhstan, Kirghizistan, Koweït, Liban, Libye, Malaisie, Maldives, Mali, Maroc, Mauritanie, Mozambique, Niger, Nigeria, Oman, Ouganda, Ouzbékistan, Pakistan, Palestine, Qatar, Sénégal, Sierra Leone, Somalie, Soudan, Suriname, Syrie, Tadjikistan, Tchad, Togo, Turkménistan, Tunisie, Turquie, Yémen
))). Elle voté une résolution n°3/35-INF intitulée "//Collaboration of Computer Emergency Response Team (CERT) Among the OIC Member Countries//" lors de la 35^^ème^^ session du Conseil des Ministres des Affaires Etrangères qui s'est déroulée à Kampala en Ouganda, du 18 au 20 juin 2008. Elle acte la création d'une //Organisation of The Islamic Cooperation – Computer Emergency Response Teams// ou ''OIC-CERT''
L'OIC-CERT comprend ''<<tiddler f_NbAllny with: 'Any' '99_'>>'' membres. (voir ci-dessous)
@@color:#000091;▬▬▬▬@@
Le site de l'OIC-CERT est [[OIC-CERT.org ⇗|http://oic-cert.org/]] est décliné en 3 langues : [[Anglais ⇗|https://oic-oci.org/home/?lan=en]], [[العربية ⇗|https://oic-oci.org/home/?lan=en]], [[Français ⇗|https://oic-oci.org/home/?lan=fr]]
<<tiddler f_TabAll with: '99_' Any 'CSIRTs membres de l\'OIC-CERT'>>/%
|d|∞|
|n|OIC-CERT|
|z|∞|
%/
PaCSON (Pacific Cyber Security Operational Network) est une association qui regroupe des membres d'organisation et de CSIRTs de la région Pacifique
PaCSON comprend ''<<tiddler f_NbAllny with: 'Any' >>'' membres répartis entre ''16'' états de la région (voir ci-dessous).
@@color:#000091;▬▬▬▬@@
Le site de PaCSON : [[PaCSON.org ⇗|https://pacson.org/]]
<<tiddler f_TabAll with: '49_' Any 'Membres de PaCSON'>>/%
|n|PaCSON|
|z|AS/OC|
%/
L'IWWN (International Watch and Warning Network) est un réseau informel de coopération international. Ses membres sont des agences ou des CSIRT gouvernementaux et/ou nationaux situés en Europe, Asie, Océanie, et Amétique du Nord.
Ses missions sont le partage d'informations et d'alertes sur les vulnérabilités, les cyber-menaces, et les attaques dans un environnement de confiance qui comprend des partenaires remplissant des conditions spécifiques.
|>|Liste des 15 pays représentés|h
|Europe |Allemagne, Danemark, Finlande, France, Italie, Norvège, Pays-Bas, Royaume-Uni, Suède, Suisse |
|Asie |Japon |
|Océanie |Australie, Nouvelle-Zélande |
|Amétique du Nord |Canada, États-Unis |
L'IWWN n'a pas de présence sur Internet et pas de site Web.
/%
|b|-|
|Bss|-|
|CTI|-|
|c|2004|
|d|∞|
|Git|-|
|IOC|-|
|l|-|
|L|[[⇗|/posts/?feedView=all]]|
|Mdm|-|
|Mtd|-|
|Nws|-|
|n|IWWN ((*(International Watch and Warning Network)))|
|Rpt|-|
|§|IWWN|
|Tru|s.o.|
|Twi|-|
|u|[[⇗|]]|
|Who|https://itlaw.fandom.com/wiki/International_Watch_and_Warning_Network|
|You|-|
|z|∞|
%/
[>img(200Px,auto)[iCSIRT/CSIRTAmericas.png]]Le ''CSIRTAmericas Network'' regroupe ''<<tiddler f_NbAllny with: 'Any' '41_'>>'' CSIRTs nationaux, gouvernementaux et militaires des états membres de l'Organization of American States (OAS) / Organización de los Estados Americanos (OEA).
Web : [img[English|iLang/lang_EN.gif]] https://csirtamericas.org/en / [img[Espagnol|iLang/lang_ES.gif]] https://csirtamericas.org/es
{{ss2col{
* ''<<tiddler f_NbAllny with: 'All' '41_","1T_'>>'' membres [[FIRST|Association - FIRST]] +++[»] <<tiddler f_UlAllnyCC with: 'All' '41_","1T_'>> ===
* ''<<tiddler f_NbAllny with: 'All' '41_","7T_'>>'' membres [[TF-CSIRT|Association - TF-CSIRT]] +++[»] <<tiddler f_UlAllnyCC with: 'All' '41_","7T_'>> ===
}}}
{{ss2col{
* <<tiddler f_NbAllny with: 'All' '41_","na_'>> membres en Amérique du Nord +++[»] <<tiddler f_UlAllnyCC with: 'All' '41_","na_'>> ===
* <<tiddler f_NbAllny with: 'All' '41_","58_'>> membres en Amérique Centrale +++[»] <<tiddler f_UlAllnyCC with: 'All' '41_","58_'>> ===
* <<tiddler f_NbAllny with: 'All' '41_","59_'>> membres en Amérique du Sud +++[»] <<tiddler f_UlAllnyCC with: 'All' '41_","59_'>> ===
}}}/%
|MaJ|O9B|
-
|Mem|https://csirtamericas.org/en/member_teams|
|n|Amérique du Nord/Centrale/Suf|
|z|na+CA+SA|
%/
Le ''National Council of ISACS'' regroupe les <<tiddler f_NbAllny with: 'Any' '81_'>> ISACs basées aux États-Unis, certaines avec des activités globales et des membres dans le monde entier.
Lien : https://www.nationalisacs.org/
<<tiddler [[ISACs - US]]>>
CENTR est le //''Council of European National Top-Level Domain Registries''//.
À date (''<<tiddler [[f_MA]]>>''), il est constitué de 51 //Full Members//, 8 //Associate Members//, et 13 organisations avec le statut de //Observers//.
Lien : https://www.centr.org/
<<tabs CENTR 'Full Members' '' [[Association - CENTR##Full]] 'Associate Members' '' [[Association - CENTR##Associates]] 'Observers' '' [[Association - CENTR##Observers]] >>
/%
!Full
|>|>|>|Full Members [[⇗|https://www.centr.org/about/members.html?filter_15=1&cc=p]]|h
|!Entité| !Web | !ccTLD | !Statut |
|.hu • Hongrie| [[⇗|https://www.domain.hu/home/]] | HU | Member |
|.IE • Irlande| [[⇗|https://www.iedr.ie/]] | IE | Member |
|.it Registry • Italie| [[⇗|http://www.nic.it/]] | IT | Member |
|.PT • Portugal| [[⇗|https://www.dns.pt/]] | PT | Member |
|AFGNIC • Afganistan| [[⇗|http://nic.af/]] | AF | Member |
|AFNIC • France| [[⇗|http://www.afnic.fr/]] | FR | Member |
|Andorra Telecom • Andorre| [[⇗|http://www.nic.ad/]] | AD | Member |
|ARNES • Slovenie| [[⇗|https://www.register.si/]] | SI | Member |
|BTK • Turquie| [[⇗|https://www.btk.gov.tr/]] | TR | Member |
|CARNET • Croatie| [[⇗|https://domene.hr/]] | HR | Member |
|Caucasus Online LLC • Georgie| [[⇗|http://www.nic.ge/en/]] | GE | Member |
|CIRA • Canada| [[⇗|https://cira.ca/]] | CA | Member |
|CZ.NIC • Tchéquie| [[⇗|https://www.nic.cz/]] | CZ | Member |
|DENIC eG • Allemagne| [[⇗|https://www.denic.de/]] | DE | Member |
|DNS Belgium • Belgique| [[⇗|https://www.dnsbelgium.be/]] | BE | Member |
|doMEn • Montenegro| [[⇗|http://domain.me/]] | ME | Member |
|Domicilium Ltd • Ile de Man| [[⇗|https://www.nic.im/]] | IM | Member |
|Domreg.lt • Lithuanie| [[⇗|http://www.domreg.lt/]] | LT | Member |
|Estonian Internet Foundation • Estonie| [[⇗|http://www.internet.ee/]] | EE | Member |
|EURid • Union Européenne| [[⇗|http://www.eurid.eu/]] | EU | Member |
|FORTH-ICS • Grèce| [[⇗|https://grweb.ics.forth.gr/]] | GR | Member |
|Hostmaster Ltd • Ukraine| [[⇗|https://www.hostmaster.ua/]] | UA | Member |
|ICI • Roumanie| [[⇗|http://www.rotld.ro/]] | RO | Member |
|Internetstiftelsen • Suède| [[⇗|https://www.iis.se/]] | SE | Member |
|Island Networks • Royaume-Uni| [[⇗|https://channelisles.net/]] | GG, JE | Member |
|ISNIC • Islande| [[⇗|https://www.isnic.is/]] | IS | Member |
|ISOC-IL • Israel| [[⇗|https://www.isoc.org.il/]] | IL | Member |
|ISOC.AM • Armenie| [[⇗|https://www.isoc.am/]] | AM | Member |
|MARnet • Macedoine du Nord| [[⇗|http://marnet.mk/]] | MK | Member |
|NASK • Pologne| [[⇗|http://www.dns.pl/]] | PL | Member |
|NIC Malta • Malte| [[⇗|https://www.nic.org.mt/]] | MT | Member |
|NIC.AC • Saint Helene| [[⇗|http://www.nic.ac/]] | SH | Member |
|NIC.AT • Austriche| [[⇗|https://www.nic.fo/]] | AT | Member |
|NIC.FO • Ile Féroé| [[⇗|https://www.nic.at/]] | FO | Member |
|NIC.LV • Lettonie| [[⇗|https://www.nic.lv/]] | LV | Member |
|Nominet • Royaume-Uni| [[⇗|http://www.nominet.uk/]] | UK | Member |
|Norid • Norvège| [[⇗|https://www.norid.no/]] | NO | Member |
|PNINA • Etat de Palestine| [[⇗|http://www.pnina.ps/]] | PS | Member |
|Punktum dk • Danemark| [[⇗|https://www.dk-hostmaster.dk/]] | DK | Member |
|Red.es • Espagne| [[⇗|http://www.red.es/]] | ES | Member |
|Register.BG • Bulgarie| [[⇗|https://www.register.bg/]] | BG | Member |
|RESTENA DNS-LU • Luxembourg| [[⇗|http://www.dns.lu/]] | LU | Member |
|RNIDS • Serbie| [[⇗|https://www.rnids.rs/]] | RS | Member |
|Sapphire Networks • Gibraltar| [[⇗|http://www.sapphire.gi/]] | GI | Member |
|SIDN • Pays-Bas| [[⇗|https://www.sidn.nl/]] | NL | Member |
|SK-NIC • Slovaquie| [[⇗|https://www.sk-nic.sk/]] | SK | Member |
|SWITCH • Suisse| [[⇗|https://www.switch.ch/]] | CH | Member |
|The Holy See • Vatican| [[⇗|http://w2.vatican.va/]] | VA | Member |
|TRAFICOM • Finlande| [[⇗|https://domain.fi/]] | FI | Member |
|University of Cyprus DNS • Chypre| [[⇗|http://www.nic.cy/]] | CY | Member |
|UTIC • Bosnie-Herzégovine| [[⇗|http://www.utic.ba/]] | BA | Member |
!Associates
|[[Associate Members|https://www.centr.org/about/members.html?filter_15=2&cc=p]]|c
|!Entité| !Web | !ccTLD | !Statut |
|auDA • Australie| [[⇗|http://www.auda.org.au/]] | AU | Associate |
|CentralNic • Royaume-Uni| [[⇗|https://www.centralnicgroup.com/]] | UK | Associate |
|Fundació puntCAT • Espagne| [[⇗|http://fundacio.cat/]] | CAT | Associate |
|InternetNZ • Nouvelle-Zélande| [[⇗|https://internetnz.nz/]] | NZ | Associate |
|JPRS • Japon| [[⇗|http://jprs.co.jp/]] | JP | Associate |
|PIR • Etats-Unis| [[⇗|https://pir.org/]] | ORG | Associate |
|GoDaddy Registry Services, LLC • Etats-Unis| [[⇗|https://registry.godaddy/]] | ∞ | Associate |
|Verisign • Etats-Unis| [[⇗|https://www.verisign.com/]] | ∞ | Associate |
!Observers
|[[Observers|https://www.centr.org/about/members.html?filter_15=3&cc=p]]|c
|!Entité| !Web | !ccTLD | !Statut |
|AfTLD • Kenya| [[⇗|http://www.aftld.org/]] | KE | Observer |
|APTLD • Hong Kong| [[⇗|http://www.aptld.org/]] | HK | Observer |
|DNS Research Federation • Royaume-Uni| [[⇗|https://dnsrf.org/]] | UK | Observer |
|eco • Allemagne| [[⇗|https://international.eco.de/]] | DE | Observer |
|EuroISPA • Belgium| [[⇗|http://www.euroispa.org/]] | EU | Observer |
|European Commission • Belgique| [[⇗|http://ec.europa.eu/]] | EU | Observer |
|ICANN • Etats-Unis| [[⇗|ttp://www.icann.org]] | ∞ | Observer |
|Internet Systems Consortium • Etats-Unis| [[⇗|https://www.lactld.org/en]] | ∞ | Observer |
|LACTLD • Uruguay| [[⇗|https://www.lactld.org/en]] | UY | Observer |
|Netnod • Sweden| [[⇗|http://www.netnod.se/]] | SE | Observer |
|NLnet Labs • Pays-Bas| [[⇗|http://nlnetlabs.nl/]] | NL | Observer |
|OARC • Etats-Unis| [[⇗|https://www.dns-oarc.net/]] | ∞ | Observer |
|RIPE NCC • Pays-Bas| [[⇗|https://www.ripe.net/]] | EU | Observer |
!end
%/
[>img(200px,auto)[iCSIRT/OpenCSIRTFoundation.png]]L'OpenCSIRT Foundation (OCF) est une fondation à but non lucratif basée aux Pays-Bas fondée puis rejointe par plusieurs experts issus de la communauté des CSIRTs.
Après avoir conçu le modèle de maturité des CSIRTs [[SIM3]], elle le maintient, en assure la promotion et son intégration par les associations de CSIRTs et leurs membres, et assure la cohérence de ses évolutions.
Le site Web de l'OpenCSIRT Foundation est : https://OpenCSIRT.org/
/%
|b|-|
|Bss|-|
|CTI|-|
|d|∞|
|f|∞|
|Git|-|
|IOC|-|
|l|[[⇗|https://www.linkedin.com/company/open-csirt-foundation/]]|
|L|[[⇗|https://www.linkedin.com/company/open-csirt-foundation/posts/?feedView=all]]|
|Mdm|-|
|Mtd|-|
|Nws|-|
|n|OpenCSIRT Foundation|
|Rpt|-|
|§|OCF|
|Tru|10|
|Twi|-|
|u|[[⇗|https://OpenCSIRT.org/]]|
|You|-|
|z|∞|
%/
[>img(200px,auto)[iCSIRT/ShadowServerFoundation.png]]La ShadowServer Foundation est une "//nonprofit security organization working altruistically behind the scenes to make the Internet more secure for everyone//.
Le site Web de la ShadowServer Foundation est : https://www.shadowserver.org/
/%
|b|[[⇗|https://www.shadowserver.org/news-insights/]]|
|Bss|-|
|CTI|-|
|d|∞|
|f|∞|
|Git|[[⇗|https://github.com/The-Shadowserver-Foundation]]|
|IOC|-|
|l|[[⇗|https://www.linkedin.com/company/the-shadowserver-foundation/]]|
|l|[[⇗|https://www.linkedin.com/company/the-shadowserver-foundation/posts/?feedView=all]]|
|Mdm|-|
|Mtd|[[⇗|https://mastodon.social/@shadowserver@infosec.exchange/]]|
|Nws|-|
|n|The ShadowServer Foundation|
|Rpt|-|
|Tru|9|
|Twi|-|
|You|-|
|z|∞|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Aviation]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|2023|
|d|FR|
|f|🇫🇷|
|k|Aviation|
|l|[[⇗|https://www.linkedin.com/company/cert-aviation-france/]]|
|L|[[⇗|https://www.linkedin.com/company/cert-aviation-france/posts/?feedView=all]]|
|m|+++[🖂] contact[@]cert-aviation[.]fr === |
|n|CERT Aviation France|
|o|CSIRT sectoriel Aviation|
|p|0x17146A97|
|P|https://www.cert-aviation.fr/wp-content/uploads/2023/11/cert-aviation-france_0x17146a97_public.asc|
|r|[[⇘|https://www.cert-aviation.fr/wp-content/uploads/2024/09/rfc2350_cert_aviation_france_v2_fr.pdf]]/[[⇘|https://www.cert-aviation.fr/wp-content/uploads/2024/09/rfc2350_cert_aviation_france_v2_en.pdf]]|
|t|+++[🕾] 0181707172 === |
|u|[[⇗|https://www.cert-aviation.fr/]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Entreprises de Défense]]>>/%
|1|x|
|aFR|✔|
|c|2023|
|m|+++[🖂] cert-drsd[.]contact[.]fct[@]def[.]gouv[.]fr === |
|f|🇫🇷|
|n|CERT [ED]|
|o|DRSD ((*(Direction du Renseignement et de la Sécurité de la Défense)))|
|p|0xA99FF908|
|r|[[⇘|https://www.drsd.defense.gouv.fr/sites/default/files/inline-files/CERT-ED_RFC_2350.pdf]]|
|k|CSIRT sectoriel Entreprises de Défense|
|t|+++[🕾] 0805046300 === |
|7|x|
|d|FR|
|y|Institutionnel|
|u|[[⇗|https://www.drsd.defense.gouv.fr/cert-ed]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Maritime]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|2021 |
|d|FR|
|f|🇫🇷|
|k|CSIRT sectoriel Maritime|
|L|[[⇗|https://www.linkedin.com/showcase/m-cert/posts/?feedView=all]]|
|l|[[⇗|https://www.linkedin.com/showcase/m-cert/]]|
|m|+++[🖂] contact[@]m-cert[.]fr === |
|n|M-CERT|
|o|France Cyber Maritime|
|p|0xE37BEBB7|
|P|https://www.m-cert.fr/key/M-CERT_public_key.asc|
|r|[[⇘|https://www.m-cert.fr/rfc/M-CERT_RFC_2350_v1.61.pdf]]|
|t|+++[🕾] +33.9.74985217 === |
|u|[[⇗|https://www.m-cert.fr]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Santé]]>>/%
|1|x|
|aFR|✔|
|c|2017|
|m|+++[🖂] cyberveille[@]esante[.]gouv[.]fr === |
|f|🇫🇷|
|l|[[⇗|https://www.linkedin.com/company/agence-du-numerique-en-sante/]]|
|l|[[⇗|https://www.linkedin.com/showcase/cert-sante/]]|
|L|[[⇗|https://www.linkedin.com/showcase/cert-sante/posts/?feedView=all]]|
|n|CERT Santé|
|o|ANS ((*(Agence du Numérique en Santé)))|
|p|0x8E92D7E3|
|P|https://pgp.circl.lu/pks/lookup?search=0x8E92D7E3&fingerprint=on&op=index|
|r|[[⇘|https://www.cyberveille-sante.gouv.fr/sites/default/files/media/document/2023-02/CERTSant%C3%A9_RFC2350_v1.8.pdf]]|
|RSS|[[⇗|https://esante.gouv.fr/rss.xml]]|
|k|CSIRT sectoriel Santé|
|t|+++[🕾] 0972439125 === |
|7|x|
|d|FR||Twi|[[⇗|https://twitter.com/esante_gouv_fr]]|
|y|Institutionnel|
|u|[[⇗|https://esante.gouv.fr/produits-services/cert-sante]]|
|You|[[⇗|https://www.youtube.com/channel/UCd1zuSaU5cE1lRCpwv_HSMA]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Affaires Sociales]]>>/%
|1|x|
|aFR|x|
|c|2023|
|v|49004|
|f|🇫🇷|
|n|CERT Social|
|o|Sécurité Sociale|
|p|0xC5EBE134|
|P|https://pgp.circl.lu/pks/lookup?search=0xB49594E2C5EBE134&fingerprint=on&op=index|
|r|[[⇘|https://assurance-maladie.ameli.fr/sites/default/files/cert-social-frc2350-v5_assurance-maladie.pdf]][[⇘|https://assurancemaladiesec.github.io/abuse/CERTSocial-RFC2350.pdf]]|
|k|Secteur Affaires sociales|
|t|+++[🕾] +33.2.52092006 === |
|7|x|
|d|FR||y|Sectoriel|
|u|[[⇗|https://www.assurance-maladie.ameli.fr/qui-sommes-nous/cert-social]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Auvergne-Rhône-Alpes]]>>/%
|c|@@color:#E1000F;''NON''@@|
|d|FR|
|f|🇫🇷|
|n|?|
|o|Auvergne-Rhône-Alpes|
|y|Régional|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Bassin Pacifique]]>>/%
|1|x|
|7|x|
|aFR|-|
|c|2023|
|d|NC ((*(Nouvelle-Calédonie))) • PF ((*(Polynésie française))) • TF ((*(Terres australes françaises)))|
|f|🇫🇷|
|H|Horaires : Lu…Ve 8h…16h (heures locales)|
|l|[[⇗|https://www.linkedin.com/company/centre-cyber-du-pacifique/]]|
|L|[[⇗|https://www.linkedin.com/company/centre-cyber-du-pacifique/posts/?feedView=all]]|
|m|+++[🖂] contact[@]centrecyberpacifique[.]nc === |
|n|Centre cyber du Pacifique ((*(CCP)))|
|o|Bassin Pacifique|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|t|+687 81 69 10 ou 505.300|
|u|[[⇗|https://centrecyberpacifique.nc/]]|
|y|Régional|
|z|oc|
|Presse|[[⇗|https://www.dnc.nc/un-centre-de-ressource-cyber-a-vocation-regionale/]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Bourgogne-Franche-Comté]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|2022|
|d|FR|
|f|🇫🇷|
|H|Horaires : Lu…Ve 9h…12h30 et 13h30…17h (CET)|
|l|[[⇗|https://www.linkedin.com/showcase/csirt-bfc-centre-regional-de-cybersecurite/]]|
|L|[[⇗|https://www.linkedin.com/showcase/csirt-bfc-centre-regional-de-cybersecurite/posts/?feedView=all]]|
|m|+++[🖂] cyber[@]arnia-bfc[.]fr === |
|n|CSIRT Bourgogne-Franche-Comté|
|o|Bourgogne-Franche-Comté|
|p|0x169AB32B|
|P|https://pgp.circl.lu/pks/lookup?search=0x169AB32B&fingerprint=on&op=index|
|r|[[⇘| https://www.csirt-bfc.fr/wp-content/uploads/2024/09/CSIRT-BFC-RFC-2350-V3.0.pdf]]|
|t|09 7060 9909|
|u|[[⇗|https://www.csirt-bfc.fr/]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Bretagne]]>>/%
|1|x|
|7|x|
|aFR|✔|
|b|[[⇗|https://breizhcyber.bzh/actualites/]]|
|c|2023|
|d|FR|
|f|🇫🇷|
|H|Horaires : Lu…Je 9h…17h30 / Ve 9h…17h (CET)|
|l|[[⇗|https://www.linkedin.com/company/breizh-cyber/]]|
|L|[[⇗|https://www.linkedin.com/company/breizh-cyber/posts/?feedView=all]]|
|m|+++[🖂] contact[@]breizhcyber[.]bzh === |
|n|Breizh Cyber|
|o|Bretagne|
|p|0x4D02117C|
|P|https://breizhcyber.bzh/app/uploads/2023/11/Breizh_Cyber_PGP_Key.txt|
|r|[[⇘|https://breizhcyber.bzh/app/uploads/2024/09/RFC2350-BreizhCyber.pdf]]|
|t|0 800 200 008|
|u|[[⇗|https://breizhcyber.bzh/]]|
|y|Régional|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Caraibes]]>>/%
|1|x|
|7|x|
|aFR|x|
|ann|[[⇗|https://www.linkedin.com/feed/update/urn:li:activity:7189200542286401536/]]|
|b|[[⇗|https://www.accyb.org/]]|
|c|?|
|d|GP ((*( → → 🇬🇵 Guadeloupe))) • GF ((*( → → 🇬🇫 Guyane))) • MQ ((*( → → 🇲🇶 Martinique))) • BL ((*( → → 🇧🇱 Saint-Barthélemy))) • MF ((*( → → 🇲🇫 Saint-Martin))) • PM ((*( → → 🇵🇲 Saint-Pierre et Miquelon)))|
|f|🇫🇷|
|H|Horaires : Lu…Ve 9h…12h30 et 13h30…17h (heures locales)|
|l|[[⇗|https://www.linkedin.com/company/accyb/]]|
|m|+++[🖂] csirt-atlantic[@]accyb[.]org === |
|n|CSIRT Atlantic|
|o|Caraïbes ((*(Centre de Resssources Cyber des territoires français d'Amérique / ACCYB : Agence caribéenne pour la cybersécurité)))|
|p|@@color:#E1000F;''X''@@|
|r|[[⇘|https://www.accyb.org/Documents/CSIRT-ATLANTIC.pdf]]|
|Twitter|[[⇗|https://x.com/ACCYB97]]|
|t|09 70 26 08 01|
|u|[[⇗|https://www.accyb.org/en/FindOutAtlantic]]|
|y|Régional|
|z|NA / SA|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Centre-Val de Loire]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|2022|
|d|FR|
|f|🇫🇷|
|H|Horaires : Lu…Ve 8h30…12h30 et 14h…17h30 (CET)|
|l|[[⇗| https://www.linkedin.com/company/cybereponse/ ]]|
|L|[[⇗|https://www.linkedin.com/company/cybereponse/posts/?feedView=all]]|
|n|CybeRéponse|
|o|Centre-Val de Loire|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|t|0 805 691 505 / 02 1923 0466|
|u|[[⇗|https://www.cybereponse.fr/]]|
|y|Régional|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Corse]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|2024|
|d|FR|
|f|🇫🇷|
|H|Horaires : Lu…Ve 8h30…12h30 et 14h…17h30 (CET)|
|l|[[⇗|https://www.linkedin.com/company/csirt-cybercorsica/]]|
|L|[[⇗|https://www.linkedin.com/company/csirt-cybercorsica/posts/?feedView=all]]|
|m|+++[🖂] contact[@]cyber[.]corsica === |
|n|CSIRT Cybercorsica|
|o|Corse|
|p|0xFECB460F|
|P|https://cyber.corsica/pgp/|
|RSS|[[⇗|https://cyber.corsica/feed/]]|
|r|[[⇗|https://cyber.corsica/rfc2350/]] ^^([[⇘|https://cyber.corsica/wp-content/uploads/2024/02/CSIRT-CyberCorsica_RFC2350_V1.0.pdf]])^^|
|t|04 2097 0097|
|u|[[⇗|https://cyber.corsica/]]|
|y|Régional|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Grand-Est]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|2022|
|d|FR|
|f|🇫🇷|
|H|Horaires : Lu…Ve 9h…12h30 et 14h…17h30 (CET)|
|m|+++[🖂] contact[@]grandest-cyber[.]fr === |
|n|Grand Est Cybersécurité|
|o|Grand-Est|
|p|0xEFF7B6FD|
|P|https://pgp.circl.lu/pks/lookup?search=0xEFF7B6FD&fingerprint=on&op=index|
|r|[[⇘|https://www.cybersecurite.grandest.fr/wp-content/uploads/2023/08/Grand-Est-Cybersecurite-RFC2350.pdf]]|
|t|0970512525|
|u|[[⇗|https://cybersecurite.grandest.fr/]]|
|y|Régional|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Hauts-de-France]]>>/%
|1|x|
|7|x|
|Adresse|172 Avenue de Bretagne 59000 Lille|
|aFR|x|
|c|2022|
|d|FR|
|f|🇫🇷|
|H|Horaires : Lu…Ve 9h…12h30/14h…17h30 (CET)|
|l|[[⇗|https://www.linkedin.com/company/csirt-hauts-de-france/]]|
|L|[[⇗|https://www.linkedin.com/company/csirt-hauts-de-france/posts/?feedView=all]]|
|m|+++[🖂] jelahmar[@]csirt-hdf[.]fr ou elahmar[@]citc-eurarfid[.]com === |
|n|CSIRT Hauts-de-France|
|o|Hauts-de-France|
|p|@@color:#E1000F;''X''@@|
|r|[[⇘|http://csirt-hdf.fr/wp-content/uploads/2024/07/RFC2350-CSIRT-HdF-v1.5_FR.pdf]]|
|Twi|[[⇗|https://twitter.com/CsirtHDF]]|
|t|0 806 700 111|
|u|[[⇗|https://csirt-hdf.fr/]]|
|v|59000|
|y|Régional|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Ile-de-France]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|2023|
|d|FR|
|f|🇫🇷|
|H|Horaires : Lu…Ve 8h…18h (CET)|
|l|[[⇗|https://www.linkedin.com/showcase/urgence-cyber-ile-de-france/]]|
|L|[[⇗|https://www.linkedin.com/showcase/urgence-cyber-ile-de-france/posts/?feedView=all]]|
|m|+++[🖂] urgencecyber[@]iledefrance[.]fr === |
|n|Urgence Cyber IDF|
|o|Ile-de-France|
|p|@@color:#E1000F;''X''@@|
|r|[[⇘|https://urgencecyber.iledefrance.fr/files/rfc2350.pdf]]|
|t|0 800 730 647|
|u|[[⇗|https://urgencecyber.iledefrance.fr/]]|
|y|Régional|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - La Réunion]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|2024|
|d|FR|
|f|🇫🇷/🇷🇪|
|H|Horaires : Lu…Ve 9h…12h et 13h…17h (heures locales)|
|m|+++[🖂] csirt[@]cyber-reunion[.]fr === |
|n|CSIRT LA RÉUNION ((*(opéré par CYBER RÉUNION)))|
|o|La Réunion|
|p|0xA1FBB5EA|
|P|https://cyber-reunion.fr/cle-pgp|
|r|[[⇘|https://www.cyber-reunion.fr/rfc-2350]] ^^([[⇘|https://www.cyber-reunion.fr/wp-content/uploads/CSIRT-LR_RFC2350_FR.pdf]])^^|
|t|0262 974 999|
|u|[[⇗|https://www.cyber-reunion.fr/csirt/]]|
|y|Régional|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Normandie]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|2022|
|d|FR|
|f|🇫🇷|
|H|Horaires : Lu…Je 8h…17h / Ve 8h…16h (CET)|
|m|+++[🖂] contact[@]normandie-cyber[.]fr === |
|n|Normandie Cyber|
|o|Normandie|
|p|0x5494D873|
|P|https://pgp.circl.lu/pks/lookup?search=0x5494D873&fingerprint=on&op=index|
|r|[[⇘|https://adnormandie.fr/wp-content/uploads/2024/02/RFC2350-CSIRT-R-v1.2_FR.pdf]]|
|t|0 808 800 001|
|u|[[⇗|https://adnormandie.fr/besoin/normandie-cyber/]]|
|y|Régional|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Nouvelle-Aquitaine]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|2022|
|d|FR|
|f|🇫🇷|
|H|Horaires : Lu…Ve 9h…12h30 et 13h30…17h (CET)|
|l|[[⇗|https://www.linkedin.com/company/campus-cyber-nouvelle-aquitaine/]]|
|L|[[⇗|https://www.linkedin.com/company/campus-cyber-nouvelle-aquitaine/posts/?feedView=all]]|
|m|+++[🖂] csirt[@]campuscyber-na[.]fr === |
|n|Centre de Réponse aux Incidents Cyber|
|o|Nouvelle-Aquitaine|
|p|0x05B37CEA|
|P|https://pgp.circl.lu/pks/lookup?search=0x05B37CEA&fingerprint=on&op=index|
|r|[[⇘|https://www.campuscyber-na.fr/campus-api/uploads/RFC_2350_d4540f969c.pdf]]|
|t|0805292940|
|u|[[⇗|https://www.campuscyber-na.fr/]]|
|y|Régional|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Occitanie]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|2022|
|d|FR|
|f|🇫🇷|
|H|Horaires : Lu…Ve 9h…12h et 14h…17h (CET)|
|l|[[⇗|https://www.linkedin.com/company/cyberocc/]]|
|L|[[⇗|https://www.linkedin.com/company/cyberocc/posts/?feedView=all]]|
|m|+++[🖂] csirt[@]cyberocc[.]fr === |
|n|Cyber'Occ|
|o|Occitanie|
|p|@@color:#E1000F;''X''@@|
|r|[[⇘|https://www.cyberocc.com/wp-content/uploads/2024/10/RFC2350-CSIRT-CyberOcc.pdf]]|
|t|0 800 711 313|
|u|[[⇗|https://www.cyberocc.com/]]|
|y|Régional|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Pays-de-Loire]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|2023|
|d|FR|
|f|🇫🇷|
|H|Horaires : 7j/7 24h/24|
|m|+++[🖂] cyberassistance[@]paysdeloire[.]fr === |
|n|Pays de la Loire Cyber Assistance|
|o|Pays-de-Loire|
|p|0x2C3D542D|
|P|https://pgp.mit.edu/pks/lookup?search=cyberassistance%40paysdelaloire.fr&op=index&fingerprint=on|
|r|[[⇘|https://www.paysdelaloire.fr/sites/default/files/2023-10/CSIRT%20Pays%20de%20la%20Loire%20Cyber%20Assistance%20%E2%80%93%20RFC2350%20%281%29.pdf]]|
|t|0800100200|
|u|[[⇗|https://www.paysdelaloire.fr/economie-et-innovation/entreprise/mon-organisation-subit-une-cyberattaque]]|
|y|Régional|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Provence-Alpes-Côte-d'Azur]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|2023|
|d|FR|
|f|🇫🇷|
|H|Horaires : Lu…Ve 9h…18h (CET)|
|l|[[⇗|https://www.linkedin.com/company/urgence-cyber-region-sud/]]|
|L|[[⇗|https://www.linkedin.com/company/urgence-cyber-region-sud/posts/?feedView=all]]|
|m|+++[🖂] contact[@]urgencecyber-regionsud[.]fr === |
|n|Urgence Cyber région Sud|
|o|Provence-Alpes-Côte-d'Azur|
|p|0xBE7A8CFC|
|P|https://www.urgencecyber-regionsud.fr/a-propos/|
|r|[[⇘|https://www.urgencecyber-regionsud.fr/wp-content/uploads/2023/10/20231002_TLP-CLEAR_UCRS_RFC2350-v1.2.pdf]]|
|t|0 805 036 083 / +33.4.2336.0930|
|u|[[⇗|https://www.urgencecyber-regionsud.fr/]]|
|y|Régional|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Accenture]]>>/%
|1|x|
|aFR|✔|
|c|2022|
|m|+++[🖂] cert[.]france[@]accenture[.]com === |
|f|🇫🇷|
|n|ACN FR CERT|
|o|Accenture|
|p|[[0x2D1DCEDC|https://pgp.circl.lu/pks/lookup?search=0x2D1DCEDC&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Externe|
|u|[[⇗|https://github.com/ACNfrCERT/Files]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - ADVENS]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|?|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] Csirt[@]advens[.]fr === |
|n|CSIRT ADVENS|
|o|ADVENS|
|pRi|PRIS^^[[⇗|https://cyber.gouv.fr/produits-services-qualifies/advens-1]]^^ |
|p|[[0xCDCC62B0|https://pgp.circl.lu/pks/lookup?search=0xCDCC62B0&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|u|[[⇗|https://advens.fr/fr/offre/services/csirt]]|
|y|Externe|
|z|eu|
|§|0x16C7AB39|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - AG2R La Mondiale]]>>/%
|1|x|
|aFR|✔|
|c|2020|
|m|+++[🖂] cert[@]ag2rlamondiale[.]fr === |
|f|🇫🇷|
|n|CERT-ALM|
|o|AG2R La Mondiale|
|p|[[0x0BE34B15|https://pgp.circl.lu/pks/lookup?search=0x0BE34B15&fingerprint=on&op=index]]|
|r|[[⇘|https://www.ag2rlamondiale.fr/rfc2350-cert-ag2r-la-mondiale]]|
|7|x|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.ag2rlamondiale.fr/rfc2350-cert-ag2r-la-mondiale]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Air Liquide]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] csirt[@]airliquide[.]coom === |
|f|🇫🇷|
|n|CSIRT Air Liquide|
|o|Air Liquide|
|p|[[0x4C30AC7D|https://pgp.circl.lu/pks/lookup?search=0x4C30AC7D&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Interne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Airbus]]>>/%
|1|[[✔|https://first.org/members/teams/ai_cert]] ^^2016^^|
|aFR|✔|
|c|2013|
|m|+++[🖂] cert[@]airbus[.]com === |
|f|🇫🇷|
|n|Airbus CERT ((*(Ai CERT)))|
|o|Airbus|
|p|[[0xC3EAE1CA|https://pgp.circl.lu/pks/lookup?search=0xC3EAE1CA&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +33.5.82051234 === |
|7|[[Accredited|https://trusted-introducer.org/directory/teams/ai-cert.html]]|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.trusted-introducer.org//directory/teams/ai-cert.html]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Airbus Protect]]>>/%
|1|[[✔|https://www.first.org/members/teams/airbus_protect]] ^^2014^^|
|7|[[Accredited|https://www.trusted-introducer.org//directory/teams/ai-cert.html]]|
|aFR|✔|
|c|2012|
|d|FR/DE|
|f|🇫🇷/🇩🇪|
|m|+++[🖂] csirt[.]protect[@]airbus[.]com === |
|n|CSIRT Airbus Protect|
|o|Airbus Protect|
|p|[[0x1A09329E|https://pgp.circl.lu/pks/lookup?search=0x1A09329E&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +33.9.72301399 === |
|u|[[⇗|https://www.protect.airbus.com/fr/cybersecurite/csirt/]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - AISI]]>>/%
|1|x|
|aFR|✔|
|v|94160|
|c|2023|
|m|+++[🖂] csirt[@]aisi[.]fr === |
|f|🇫🇷|
|l|[[⇗|https://www.linkedin.com/company/aisifr/]]|
|n|AISI CERT|
|o|AISI|
|p|[[0x24D436EF|https://www.aisi.fr/wp-content/uploads/csirt_public_key.asc.txt]]|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +33.1.84230291 === |
|7|x|
|d|FR|
|y|Externe|
|u|@@color:#E1000F;''X''@@|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Akaoma]]>>/%
|1|x|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-akaoma.html]]|
|aFR|x|
|c|2016|
|d|FR|
|f|🇫🇷|
|h|+++[🕾] +33.9.72440850 === |
|m|+++[🖂] cert-restricted[@]akaoma[.]com === |
|n|CERT-AKAOMA|
|o|Akaoma|
|p|[[0x8107D871|https://pgp.circl.lu/pks/lookup?search=0x8107D871&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +33.1.86958660 === |
|u|[[⇗|https://www.akaoma.com/cert-akaoma]]|
|v|27120|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Algosecure]]>>/%
|o|Algosecure|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|AlgoCERT|
|u|[[⇗|https://www.algosecure.fr/cert/]]|
|m|+++[🖂] cert[@]algosecure[.]fr === |
|v|69100|
|t|+++[🕾] +33.4.26782486 === |
|aFR|x|
|y|Externe|
|7|x|
|1|x|
|c|2015|
|r|[[⇘|https://www.algosecure.fr/cert/rfc2350-fr.txt]]|
|p|[[0x801E05B0|https://pgp.circl.lu/pks/lookup?search=0x801E05B0&fingerprint=on&op=index]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Alter Solutions France]]>>/%
|1|x|
|aFR|✔|
|c|2023|
|m|+++[🖂] cert[@]alter-solutions[.]com === |
|f|🇫🇷|
|n|Alter CERT|
|o|Alter Solutions France|
|p|[[0x43DD8F6B|https://pgp.circl.lu/pks/lookup?search=0x43DD8F6B&fingerprint=on&op=index]]|
|r|[[⇘|https://5690371.fs1.hubspotusercontent-na1.net/hubfs/5690371/ALTER-CERT_RFC2350.pdf]]|
|t|+++[🕾] +33.1.87669736 === |
|7|x|
|d|FR|
|y|Externe|
|u|[[⇗|https://www.alter-solutions.com/alter-cert_rfc2350]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Almond]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|2016|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] alerte[@]cwatch[.]almond[.]eu === |
|n|CERT CWATCH|
|o|Almond|
|p|[[0xC3B802BB|https://almond.eu/CERT_ALMOND_PGP_public_key.gpg]]|
|r|[[⇘|https://almond.eu/CWATCH-RFC2350.pdf]]|
|t|+++[🕾] +33.1.83753694 === |
|u|[[⇗|https://almond.eu/cybersecurity/i-need-reaction/]]|
|v|92310|
|y|Externe|
|z|eu|
|§|0xA872E235|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Amadeus]]>>/%
|1|x|
|aFR|✔|
|c|2015|
|m|+++[🖂] cert[@]amadeus[.]com === |
|f|🇫🇷|
|n|Amadeus CERT ((*(1A-CERT)))|
|o|Amadeus|
|p|[[0xEABA58E9|https://pgp.circl.lu/pks/lookup?search=0xEABA58E9&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/1a-cert-fr.html]]|
|d|FR|
|y|Interne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Amossys]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|?|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]amossys[.]fr === |
|n|CERT-Amossys|
|o|Amossys|
|p|[[0x4838736B|https://pgp.circl.lu/pks/lookup?search=0x4838736B&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|u|[[⇗|https://www.amossys.fr/fr/nos-prestations/cert/]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - ANSSI]]>>/%
|1|[[✔|https://first.org/members/teams/cert-fr]] ^^2000^^|
|75|✔|
|76|✔|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-fr.html]] ^^2002^^|
|aFR|✔|
|c|1999|
|d|FR|
|f|🇫🇷|
|g|✔|
|l|[[⇗|https://www.linkedin.com/company/anssi-fr/]]|
|L|[[⇗|https://www.linkedin.com/company/anssi-fr/posts/?feedView=all]]|
|m|+++[🖂] cert-fr[@]ssi[.]gouv[.]fr === |
|n|CERT-FR|
|o|ANSSI ((*(Agence nationale de la Sécurité des Systèmes d'Information)))|
|p|[[0x1B45CF2A|https://www.cert.ssi.gouv.fr/uploads/public_key.asc]]|
|r|[[⇘|https://www.cert.ssi.gouv.fr/uploads/CERT-FR_RFC2350_EN.pdf]]|
|sCI|✔|
|sGO|✔|
|sPP|✔|
|t|+++[🕾] ''32 18'' / +33.9.7083.3218 / +33.1.71758468 === |
|u|[[⇗|https://www.cert.ssi.gouv.fr]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - ArianeGroup]]>>/%
|MaJ|K79|
|o|ArianeGroup|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|ArianeGroup-CSIRT ((*(CSIRT-AGH)))|
|m|+++[🖂] csirt[@]ariane[.]group === |
|u|x|
|aFR|✔|
|y|Interne|
|7|x|
|1|x|
|c|2020|
|r|[[⇘|https://www.ariane.group/wp-content/uploads/2021/05/ARIANEGROUP_CSIRT_RFC2350_v1.1.pdf]]|
|p|0xE5115F62|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - ARKEMA]]>>/%
|1|x|
|aFR|✔|
|v|69310|
|c|2023|
|m|+++[🖂] cert[@]arkema[.]com === |
|f|🇫🇷|
|MaJ|O6S|
|n|CERT ARKEMA|
|o|ARKEMA|
|p|[[0x21E0233F|https://www.arkema.com/files/live/sites/shared_arkema/files/downloads/cert/CERT_ARKEMA.pub]]|
|r|[[⇘|https://www.arkema.com/files/live/sites/shared_arkema/files/downloads/cert/RFC_2350_CERT_Arkema.pdf]]|
|t|+++[🕾] +33.4.72396500 === |
|7|x|
|d|FR|
|y|Interne|
|u|@@color:#E1000F;''X''@@|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Association CERT-IST]]>>/%
|1|[[✔|https://first.org/members/teams/cert-ist]] ^^1999^^|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-ist.html]] ^^2006^^|
|aFR|✔|
|c|1999|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]cert-ist[.]com === |
|n|Cert-IST|
|o|Association CERT-IST|
|p|[[0x350A60BA|https://www.cert-ist.com/public/fr/ClePGP]]|
|r|[[⇘|https://www.cert-ist.com/public/fr/rfc2350]]|
|u|[[⇗|https://www.cert-ist.com/public/]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - ATOS]]>>/%
|o|ATOS|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|CERT-ATOS-FR|
|u|[[⇗|https://atos.net/fr/solutions/cybersecurite/services-cybersecurite/audit-conseil-services-manages#CERT-SOC]]|
|aFR|x|
|y|Externe|
|7|~~//([[Accredited|https://trusted-introducer.org/directory/teams/cert-atos-fr-fr.html]]) ((*(Accreditation suspended)))//~~|
|1|x|
|c|2015|
|r|[[⇘|https://atos.net/wp-content/uploads/2022/11/cert-atos-fr_rfc2350.pdf]]|
|p|[[0x76B7FB64|https://pgp.circl.lu/pks/lookup?search=0x76B7FB64&fingerprint=on&op=index]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - AXA Group Operations]]>>/%
|1|[[✔|https://first.org/members/teams/axa_cert]]|
|aFR|✔|
|v|75017|
|c|2016|
|m|+++[🖂] cert[@]axa[.]com === |
|f|🇫🇷|
|n|AXA CERT|
|o|AXA Group Operations|
|p|[[0x676D7D05|https://pgp.circl.lu/pks/lookup?search=0x676D7D05&fingerprint=on&op=index]]|
|r|[[⇘|https://cert.axa/sources/AXA-CERT-RFC2350.pdf]]|
|t|+++[🕾] +33.1.42290915 === |
|7|[[Listed|https://trusted-introducer.org/directory/teams/axa-cert-fr.html]]|
|d|FR|
|y|Interne|
|u|[[⇗|https://cert.axa/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Axians]]>>/%
|1|@@color:#E1000F;''X''@@|
|7|[[Listed|https://trusted-introducer.org/directory/teams/cert-axians-fr.html]]|
|aFR|x|
|c|2012|
|d|FR|
|f|🇫🇷|
|h|@@color:#E1000F;''X''@@|
|m|@@color:#E1000F;''X''@@|
|n|CERT Axians|
|o|Axians|
|p|0xED97C313|
|r|@@color:#E1000F;''X''@@|
|T|2022|
|t|@@color:#E1000F;''X''@@|
|u|x|
|v|92310|
|y|Externe|
|z|eu|
|_|CERT Alliacom|
|z10|[[✔|https://first.org/members/teams/cert_axians]] ^^2015^^|
|zl0|[[⇗|https://www.linkedin.com/showcase/axians-cybersecurity/]]|
|zL0|[[⇗|https://www.linkedin.com/showcase/axians-cybersecurity/posts/?feedView=all]]
|zm0|+++[🖂] cert[@]axians[.]com === |
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Banque de France]]>>/%
|1|[[✔|https://first.org/members/teams/cert-bdf]] ^^2017^^|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-bdf.html]] ^^2015^^|
|aFR|✔|
|c|2012|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]banque-france[.]fr === |
|n|CERT Banque de France ((*(CERT-BDF)))|
|o|Banque de France|
|p|[[0xED92F9C3|https://pgp.circl.lu/pks/lookup?search=0xED92F9C3&fingerprint=on&op=index]]|
|r|[[⇘|https://cert.banque-france.fr/static/CERT-BDF-RFC2350-EN.pdf]]|
|t|+++[🕾] +33.1.42929302 === |
|u|[[⇗|https://cert.banque-france.fr/static/index.html]]|
|v|75049|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - BNP Paribas]]>>/%
|1|[[✔|https://first.org/members/teams/csirt_bnp_paribas]] ^^2012^^|
|aFR|✔|
|v|93100|
|c|2009|
|m|+++[🖂] csirt[@]bnpparibas[.]com === |
|f|🇫🇷|
|n|CSIRT Groupe BNP Paribas|
|o|BNP Paribas|
|p|[[0x37978414|https://pgp.circl.lu/pks/lookup?search=0x37978414&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|[[Listed|https://trusted-introducer.org/directory/teams/csirt-bnp-paribas-fr.html]]|
|d|FR|
|y|Interne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Bouygues]]>>/%
|o|Bouygues|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|CERT C2S Bouygues|
|u|[[⇗|https://www.c2s-bouygues.com/dfir-cert-csirt-forensic/]]|
|v|92130|
|aFR|x|
|y|Externe|
|7|x|
|1|x|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|@@color:#E1000F;''X''@@|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Bouygues Telecom]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] mbx_csirt[@]bouyguestelecom[.]fr === |
|f|🇫🇷|
|n|CSIRT Bouygues Telecom|
|o|Bouygues Telecom|
|p|[[0x49B2684E|https://pgp.circl.lu/pks/lookup?search=0x49B2684E&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Interne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - BPCE]]>>/%
|1|x|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-groupe-bpce.html]]|
|aFR|✔|
|c|2016|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]bpce[.]fr === |
|n|CERT Groupe BPCE|
|o|BPCE|
|p|[[0x4FBDF286|https://pgp.circl.lu/pks/lookup?search=0x4FBDF286&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|u|x|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Brigade de sapeurs-pompiers de Paris]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|2022|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]pompiersparis[.]fr === |
|n|CERT-BSPP|
|o|Brigade de sapeurs-pompiers de Paris|
|p|[[0x1B374948|https://pgp.circl.lu/pks/lookup?search=0x1B374948&fingerprint=on&op=index]]|
|r|[[⇘|https://cert.pompiersparis.fr/CERT-BSPP_RFC2350_EN.pdf]]|
|t|+++[🕾] +33.1.75624158 === |
|u|[[⇗|https://cert.pompiersparis.fr/]]|
|v|75017|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Brightway]]>>/%
|1|✔|
|7|x|
|aFR|x|
|c|?|
|d|FR|
|f|🇫🇷|
|n|BrightwayCERT|
|o|Brightway|
|p|[[⇗|https://www.brightway.fr/contact/]]|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +33.1.45343538 === |
|u|[[⇗|https://www.brightway-consulting.com/?lang=en]]|
|v|92310|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Caisse des Dépôts]]>>/%
|1|x|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-cdcfr.html]] ^^2016^^|
|aFR|✔|
|c|2013|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]aissedesdepots[.]fr === |
|n|CERT-CDCFR|
|o|Caisse des Dépôts|
|p|[[0x6EC7A597|https://pgp.circl.lu/pks/lookup?search=0x6EC7A597&fingerprint=on&op=index]]|
|r|[[⇘|https://cert.caissedesdepots.fr/CERT/RFC2350-CERT-CDCFR.txt]]|
|t|+++[🕾] +33.6.07348654 === |
|u|[[⇗|https://cert.caissedesdepots.fr/CERT/]]|
|v|94110|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Capgemini_C]]>>/%
|1|x|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-c-capgemini-group-fr.html]]|
|aFR|✔|
|c|2015|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[.]global[@]capgemini[.]com === |
|n|CERT-C Capgemini Group|
|o|Capgemini|
|p|[[0x2D581804|https://pgp.circl.lu/pks/lookup?search=0x2D581804&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|u|x|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Capgemini_E]]>>/%
|1|x|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-e-capgemini-cis-fr.html]]|
|aFR|✔|
|c|2015|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[.]capgemini[@]capgemini[.]com === |
|n|CERT-E Capgemini CIS|
|o|Capgemini Technology Services|
|p|0x6B0D2D8C|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +33 5 61 30 64 99 === |
|u|x|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - CEA]]>>/%
|o|CEA|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|CERT-CEA|
|u|[[⇗|https://www.cea.fr/Pages/surete-securite/cert/cert-cea.aspx]]|
|m|+++[🖂] cert[@]cea[.]fr === |
|t|+++[🕾] +33.6.85826432 === |
|v|92265|
|aFR|x|
|y|Institutionnel|
|7|x|
|1|x|
|c|2023|
|r|[[⇘|https://www.cea.fr/Documents/cert/cert-cea_rfc2350_fr_v01.pdf]]|
|p|[[0xD1DF1C6C|https://www.cea.fr/Documents/cert/cert-cea_0xd1df1c6c_public.txt]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Carrefour]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] csirt-fr[@]carrefour[.]com === |
|f|🇫🇷|
|n|SOC/CSIRT Carrefour|
|o|Carrefour|
|p|[[0x84A4CC51|https://pgp.circl.lu/pks/lookup?search=0x84A4CC51&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Interne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - CNAM]]>>/%
|o|CNAM|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|CERT CNAM|
|u|x|
|aFR|x|
|y|Institutionnel|
|7|x|
|1|x|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|@@color:#E1000F;''X''@@|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - CNES]]>>/%
|1|x|
|aFR|✔|
|c|2024|
|m|+++[🖂] csirt-cnes[@]cnes[.]fr === |
|f|🇫🇷|
|n|CSIRT CNES|
|o|CNES ((*(Centre National d'Études Spatiales)))|
|p|0x81D17096|
|r|[[⇘|https://cnes.fr/sites/default/files/drupal/202401/default/rfc2350_csirt_cnes.pdf]]|
|7|x|
|d|FR|
|y|Interne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Colas]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] csirt[@]colas[.]com === |
|f|🇫🇷|
|n|CSIRT Colas|
|o|Colas|
|p|[[0x5A348160|https://pgp.circl.lu/pks/lookup?search=0x5A348160&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Interne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Crédit Agricole]]>>/%
|1|[[✔|https://first.org/members/teams/cert_credit_agricole]] ^^2015^^|
|aFR|✔|
|c|2006|
|m|+++[🖂] cert[@]credit-agricole[.]com === |
|f|🇫🇷|
|n|CERT Credit Agricole ((*(CERT AG)))|
|o|Crédit Agricole|
|p|[[0xD648DA81|https://pgp.circl.lu/pks/lookup?search=0x68604E3F&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|[[Certified|https://trusted-introducer.org/directory/teams/cert-credit-agricole.html]] ^^2021^^|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.cert-ag.com]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - CCF Banque]]>>/%
|1|x|
|aFR|✔|
|v|44300|
|c|2023|
|f|🇫🇷|
|l|[[⇗|https://www.linkedin.com/company/ccf-banque]]|
|n|Cert CCF|
|o|CCF Banque ((*(anciennement 'My Money Group')))|
|p|✘|
|p|0x36EFE284|
|r|✘|
|7|x|
|d|FR|
|y|Interne|
|u|x|
|z|eu|
|z_m|cert[@]ccf[.]fr|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Crédit Mutuel Arkéa]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|?|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]arkea[.]com === |
|n|CERT Arkéa|
|o|Crédit Mutuel Arkéa|
|p|[[0x7959BCAF|https://cert.arkea.com/static/img/CERT_Arkea_public.pgp]]|
|r|[[⇘|https://cert.arkea.com/static/CERT_ARKEA_RFC2350.pdf]]|
|u|[[⇗|https://cert.arkea.com/]]|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Crédit Mutuel Euro-Information]]>>/%
|1|[[✔|https://first.org/members/teams/cert_cm_ei]] ^^2022^^|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-cm-ei-fr.html]] ^^2022^^|
|aFR|✔|
|c|2018|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]creditmutuel[.]fr === |
|n|CERT CM EI|
|o|Crédit Mutuel Euro-Information|
|p|[[0x4CE11A39|https://pgp.circl.lu/pks/lookup?search=0x4CE11A39&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|u|[[⇗|https://www.creditmutuel.fr/fr/cert.html]]|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Crypt-0n]]>>/%
|MaJ|O42|
|o|Association Crypt-0n|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|CERT Crypt-0n ((*(CERT-C0)))|
|u|[[⇗|https://www.crypt-0n.fr/association/cert]]|
|m|+++[🖂] cert[@]crypt-0n[.]fr === |
|aFR|x|
|y|Interne|
|7|x|
|1|x|
|c|2017|
|r|@@color:#E1000F;''X''@@|
|p|[[0x7ECCC845|https://static.crypt-0n.fr/0x5AE27B467ECCC845.asc]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Cyberdian]]>>/%
|MaJ|O3T|
|o|Cyberdian|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|CERT-CYDN|
|u|x|
|aFR|x|
|y|Interne|
|7|x|
|1|x|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|@@color:#E1000F;''X''@@|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Cyberprotect]]>>/%
|MaJ|N1F|
|o|Cyberprotect|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|CERT CYBERPROTECT|
|u|[[⇗|https://www.cyberprotect.one]]|
|aFR|x|
|y|Externe|
|7|x|
|1|[[✔|https://first.org/members/teams/cert_cyberprotect]]|
|c|2010|
|r|[[⇘|https://cert.cyberprotect.cloud/]]|
|p|[[0xC455F7AD|https://cert.cyberprotect.cloud/cert_cyberprotect.pgp.key]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - CyberZen]]>>/%
|o|CyberZen|
|d|FR|
|f|🇫🇷|
|v|75002|
|z|eu|
|n|CERT CyberZen|
|u|[[⇗|https://www.cyberzen.com/cert/]]|
|t|+++[🕾] +33.788276823 / +33.788282542 === |
|aFR|x|
|y|Externe|
|7|x|
|1|x|
|c|2023|
|r|[[⇘|https://www.cyberzen.com/wp-content/uploads/2023/10/rfc-2350.pdf]]|
|p|[[0x7D8F2F4B|https://www.cyberzen.com/wp-content/uploads/2023/10/CERT-CYBERZEN_0x7D8F2F4B_public.asc]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Cyna]]>>/%
|1|x|
|aFR|✔|
|c|2023|
|m|+++[🖂] cert[@]cyna-it[.]fr === |
|f|🇫🇷|
|n|CynaCSIRT|
|o|Cyna|
|p|[[0x327487D6|https://keys.openpgp.org/vks/v1/by-fingerprint/F4EC02C7B80828E0AD106E8656AACB31327487D6]]|
|r|[[⇘|https://www.cyna-it.fr/_files/ugd/d9da11_7090d44a000241a19767331ed761541a.pdf]]|
|7|x|
|d|FR|
|y|Externe|
|u|[[⇗|https://www.cyna-it.fr/r%C3%A9ponse-%C3%A0-incident]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Danone]]>>/%
|1|x|
|aFR|✔|
|c|2021|
|m|+++[🖂] cert[@]danone[.]com === |
|f|🇫🇷|
|n|CERT Danone|
|o|Danone|
|p|[[0xA555C07B|https://pgp.circl.lu/pks/lookup?search=0xA555C07B&fingerprint=on&op=index]]|
|r|[[⇘|https://www.danone.com/content/dam/danone-corp/danone-com/about-us-impact/policies-and-commitments/en/2021/Danone-CERT-RFC-2350-2021.pdf]]|
|7|x|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.danone.com/content/dam/danone-corp/danone-com/about-us-impact/policies-and-commitments/en/2021/Danone-CERT-RFC-2350-2021.pdf]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Dassault Aviation]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|?|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] csirt[@]dassault-aviation[.]com === |
|n|CSIRT Dassault Aviation|
|o|Dassault Aviation|
|p|[[0xBD3A89A3|https://pgp.circl.lu/pks/lookup?search=0xBD3A89A3&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|y|Interne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Dassault Systèmes]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|2023|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] 3DS[.]CSIRT[@]3ds[.]com === |
|n|CSIRT Dassault Systèmes ((*(3DS-CSIRT)))|
|o|Dassault Systèmes ^^(3DS)^^|
|p|[[0x3614E5ED|https://keys.openpgp.org/vks/v1/by-fingerprint/12D31DF5BDE5AD6C75A1D05194C2BAC73614E5ED]]|
|r|[[⇘|https://www.3ds.com/assets/invest/2023-09/3ds-csirt-rfc2350.pdf]]|
|y|Interne|
|u|[[⇗|https://www.3ds.com/trust/3dexperience-trust-center]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - DataProtect]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|?|
|d|FR|
|f|🇫🇷|
c|m|+++[🖂] contact[@]dataprotect[.]fr === |
|n|CyberSOC DataProtect|
|o|DataProtect|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +33 637 949 101 ===|
|u|[[⇗|https://www.dataprotect.fr/cyberSoc.html]]|
|v|92800|
|y|Externe|
|z|eu|
|C_P|92800|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Decathlon Digital CSIRT]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|2023|
|d|FR|
|f|🇫🇷|
|n|CSIRT Decathlon ((*(CSIRT DKT)))|
|o|Decathlon|
|p|0xBE1C8B55|
|r|-|
|u|[[⇗|https://digital.decathlon.net/security-compliance]]|
|v|59650|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Defants]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|?|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]defants[.]com === |
|n|CERT Defants ((*(CSIRT et PSIRT)))|
|o|Defants|
|p|[[0x798848E4|http://www.defants.com/CERTPGP]]|
|r|[[⇘|http://www.defants.com/RFC2350]]|
|u|[[🇫🇷|https://www.defants.com/fr/cert-defants/]]/[[🇬🇧|https://www.defants.com/en/cert-defants-en/]]|
|v|35510|
|y|Externe/Produit|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Deloitte France]]>>/%
|1|x|
|aFR|✔|
|c|2020|
|m|+++[🖂] csirt[@]deloitte[.]fr === |
|f|🇫🇷|
|MaJ|K3N|
|n|D-CSIRT|
|o|Deloitte France|
|p|[[0xAEF73AF9|https://pgp.circl.lu/pks/lookup?search=0xAEF73AF9&fingerprint=on&op=index]]|
|r|[[⇘|https://www2.deloitte.com/content/dam/Deloitte/fr/Documents/risk/csirt-deloitte-france-rfc2350.pdf]]|
|t|+++[🕾] +33 1 4088 2829 === |
|7|x|
|d|FR|
|y|Externe|
|u|[[⇗|https://www2.deloitte.com/fr/fr/pages/risque-compliance-et-controle-interne/solutions/computer-security-incident-response-team.html]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Devensys Cybersecurity]]>>/%
|o|Devensys Cybersecurity|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|Devensys CSIRT|
|u|x|
|aFR|x|
|y|Externe|
|7|x|
|1|x|
|c|2007|
|r|@@color:#E1000F;''X''@@|
|p|@@color:#E1000F;''X''@@|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Devoteam]]>>/%
|1|x|
|aFR|✔|
|c|2007|
|m|+++[🖂] cert[@]devoteam[.]com === |
|f|🇫🇷|
|n|CERT Devoteam ((*(CERT-DVT)))|
|o|Devoteam|
|p|[[0x22D95AEE|https://pgp.circl.lu/pks/lookup?search=0x22D95AEE&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-dvt.html]]|
|d|FR|
|y|Externe|
|u|[[⇗|https://www.cert-devoteam.fr/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - DINUM]]>>/%
|o|Direction Interministérielle du Numérique ((*(DINUM)))|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|//^^(CSIRT Produits Interministériels)^^//|
|u|x|
|t|x|
|m|x|
|aFR|x|
|y|Institutionnel|
|7|x|
|1|x|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|@@color:#E1000F;''X''@@|
|zz1|numerique.gouv.fr / uploads / Organigramme%20DINUM%20f%C3%A9vrier%202024.pdf|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - DOCAPOSTE]]>>/%
|o|DOCAPOSTE|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|CSIRT DOCAPOSTE ((*(CSIRT DOCAPOST COSC / Centre Opérationnel de Sécurité et de Cyberdéfense))) |
|u|[[⇗|https://csirt.docapost.fr/]]|
|v|94220|
|t|+++[🕾] +33.1.56297711 === |
|m|+++[🖂] csirt[@]docapost[.]fr === |
|aFR|x|
|y|Interne|
|7|x|
|1|x|
|c|2018|
|r|[[⇗|https://csirt.docapost.fr/index.php/RFC2350]] [[⇘|https://csirt.docapost.fr/RFC2350_CSIRT_DOCAPOST.pdf]]|
|p|[[0x878DA63E|https://pgp.circl.lu/pks/lookup?op=get&search=0x6f6cb3f6878da63e]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - EDF]]>>/%
|1|x|
|7|[[Listed|https://trusted-introducer.org/directory/teams/cert-edf.html]]|
|aFR|✔|
|c|2018|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] CERT[@]edf[.]fr === |
|n|CERT EDF|
|o|EDF|
|p|[[0x9DE98FF9|https://pgp.circl.lu/pks/lookup?search=0x9DE98FF9&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|u|[[⇗|https://www.edf.fr/csirt/]]|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Éducation Nationale]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] cossim[@]education[.]gouv[.]fr === |
|f|🇫🇷|
|n|COSSIM|
|o|Éducation Nationale|
|p|[[0xA63DEDB3|https://pgp.circl.lu/pks/lookup?search=0xA63DEDB3&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Institutionnel|
|u|@@color:#E1000F;''X''@@|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Enedis]]>>/%
|MaJ|K57|
|o|Enedis|
|d|FR|
|m|+++[🖂] cert[@]enedis[.]fr === |
|f|🇫🇷|
|v|69007|
|z|eu|
|n|CERT Enedis|
|u|[[⇗|https://www.enedis.fr/cert/]]|
|t|+++[🕾] 0 806 800 300 === |
|v|69007|
|aFR|✔|
|y|Interne|
|7|x|
|1|x|
|c|2020|
|r|[[⇘|https://www.enedis.fr/media/1740/download]]|
|p|[[0x55337A7D|https://www.enedis.fr/sites/default/files/2021-01/CERT_Enedis.zip]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Engie]]>>/%
|o|Engie|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|CERT Engie|
|u|[[⇗|https://www.engie.com/CERT]]|
|m|+++[🖂] cert[@]engie[.]com === |
|aFR|✔|
|y|Interne|
|7|[[Listed|https://trusted-introducer.org/directory/teams/engie-cert-fr.html]]|
|1|[[✔|https://first.org/members/teams/engie_cert]]|
|c|?|
|r|[[⇘|https://www.engie.com/sites/default/files/assets/documents/2023-02/ENGIE-CERT-RFC%20%E2%80%93%20V1.4.pdf]]|
|p|[[0x6B412284|https://www.engie.com/sites/default/files/assets/documents/2023-02/ENGIE%20CERT_0x6B412284_public.asc]]|
|Old|0x045EB38C|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Equans]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] cert[@]equans[.]com === |
|f|🇫🇷|
|n|CSIRT Equans|
|o|Equans|
|p|[[0xC523CC19|https://pgp.circl.lu/pks/lookup?search=0xC523CC19&fingerprint=on&op=index]]|
|r|[[⇘|https://www.equans.com/sites/g/files/tkmtob111/files/2023-01/EQUANS%20-%20RFC%202350%20v1.2.pdf]]|
|r|[[⇘|https://www.equans.com/sites/g/files/tkmtob111/files/2024-10/EQUANS%20-%20RFC%202350%20v1.3.pdf]]|
|7|x|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.equans.com/cert]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - ERIUM]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|2024|
|d|FR|
|f|🇫🇷|
|l|[[⇗|https://www.linkedin.com/company/erium/]]|
|L|[[⇗|https://www.linkedin.com/company/erium/posts/?feedView=all]]|
|m|+++[🖂] cert[@]erium[.]fr === |
|n|ERIUM CERT ((*(CSIRT et PSIRT)))|
|o|ERIUM|
|p|[[0x0D831FEC|https://www.erium.fr/wp-content/uploads/2024/04/public_key_erium_cert.asc]]|
|r|[[⇘|https://www.erium.fr/wp-content/uploads/2024/04/ERIUM-CERT-RFC-2350.pdf]]|
|Twi|[[⇗|https://twitter.com/ERIUM_sec]]|
|u|[[⇗|https://www.erium.fr/cert]]|
|y|Externe/Produit|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - EssilorLuxottica]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|2023|
|d|FR|
|f|🇫🇷|
|MaJ|O43|
|m|+++[🖂] csirt[@]essilorluxottica[.]com === |
|n|EL-CSIRT|
|o|EssilorLuxottica|
|p|[[0x34519DE5|https://pgp.circl.lu/pks/lookup?search=0x34519DE5&fingerprint=on&op=index]]|
|r|[[⇘|https://www.essilorluxottica.com/en/cap/content/154272/]]|
|u|[[⇗|https://www.essilorluxottica.com/en/governance/ethics-and-compliance/]]|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - ExaTrack]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] cert[@]exatrack[.]com === |
|f|🇫🇷|
|n|CERT-ExaTrack|
|o|ExaTrack|
|p|[[0xA24DAE94|https://pgp.circl.lu/pks/lookup?search=0xA24DAE94&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Externe|
|u|[[⇗|https://exatrack.com/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Exodata]]>>/%
|o|Exodata|
|d|FR|
|f|🇫🇷|
|v|97490|
|z|eu|
|n|CSIRT Exodata|
|u|[[⇗|https://www.exodata.fr/cybersecurite/csirt]]|
|m|+++[🖂] incidents[@]exodata-csirt[.]fr === |
|t|+++[🕾] +262.9.71057759 (UTC+4) === |
|aFR|x|
|y|Externe|
|7|x|
|1|x|
|c|2023|
|r|[[⇘|https://www.exodata.fr/hubfs/RFC_2350_fr.pdf]]|
|p|[[0xB59FE677|https://keys.openpgp.org/vks/v1/by-fingerprint/DCCAFC279CDB3D719D98608881932F45B59FE677]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Ernst & Young Advisory]]>>/%
|1|x|
|aFR|✔|
|c|2019|
|m|+++[🖂] csirt[@]fr[.]ey[.]com === |
|m|+++[🖂] csirt[@]fr[.]ey[.]com === |
|f|🇫🇷|
|h|+++[☎] +33.1.46936464 === |
|MaJ|JBC|
|n|EY CSIRT|
|o|E&Y ((*(Ernst & Young Advisory)))|
|p|[[0x17532B11|https://www.ey.com/fr_fr/cybersecurity/computer-security-incident-response-team]]|
|r|[[⇘|https://assets.ey.com/content/dam/ey-sites/ey-com/fr_fr/topics/cybersecurity/ey-csirt-rfc-2350-20220829.pdf]]|
|t|+++[🕾] +33.1.41444996 === |
|7|[[Accredited|https://trusted-introducer.org/directory/teams/ey-csirt-fr.html]]|
|d|FR|
|y|Externe|
|u|[[⇗|https://www.ey.com/fr_fr/cybersecurity/computer-security-incident-response-team]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - EVIDEN]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] cert-fr[@]eviden[.]com === |
|f|🇫🇷|
|n|CERT-EVIDEN|
|o|EVIDEN|
|p|[[0x76B7FB64|https://pgp.circl.lu/pks/lookup?search=0x76B7FB64&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Externe|
|u||
|z|eu|
|zzz|Ex. Atos / CERT-ATOS / 2015|https://atos.net/fr/solutions/cybersecurite/services-cybersecurite/audit-conseil-services-manages#CERT-SOC]] / (Accredited [[⇗|https://trusted-introducer.org/directory/teams/cert-atos-fr-fr.html]] / [[0x76B7FB64|https://pgp.circl.lu/pks/lookup?search=0x76B7FB64&fingerprint=on&op=index]] |
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - FDJ]]>>/%
|o|FDJ|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|SOC FDJ|
|u|x|
|m|+++[🖂] csirt[@]lfdj[.]com === |
|aFR|x|
|y|Interne|
|7|[[Listed|https://trusted-introducer.org/directory/teams/soc-fdj-fr.html]]|
|1|x|
|c|2015|
|r|@@color:#E1000F;''X''@@|
|p|0x1E3E52F0|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Five9s]]>>/%
|1|x|
|aFR|✔|
|c|2019|
|m|+++[🖂] cert[@]five9s[.]fr === |
|f|🇫🇷|
|n|CERT-Five9s|
|o|Five9s|
|p|[[0x920BD1CA|https://pgp.circl.lu/pks/lookup?search=0x920BD1CA&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|[[Listed|https://trusted-introducer.org/directory/teams/cert-five9s-fr.html]]|
|d|FR|
|y|Externe|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - FORMIND]]>>/%
|o|FORMIND|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|CERT FORMIND|
|u|[[⇗|https://www.formind.fr/expertises/soccert/]]|
|aFR|x|
|y|Externe|
|7|x|
|1|x|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|@@color:#E1000F;''X''@@|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - France Grilles]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|?|
|d|FR|
|f|🇫🇷|
|m|x|
|n|EGI-CSIRT (France)|
|o|France Grilles|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|t|x|
|u|[[⇗|https://www.france-grilles.fr/presentation/securite-france-grilles/]]|
|v|-|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Gendarmerie Nationale]]>>/%
|1|x|
|aFR|✔|
|v|92130|
|c|?|
|m|+++[🖂] cecyber[@]gendarmerie[.]interieur[.]gouv[.]fr === |
|f|🇫🇷|
|n|CECYBER|
|o|Gendarmerie Nationale|
|p|[[0x9A869AD7|https://keys.openpgp.org/search?q=cecyber%40gendarmerie.interieur.gouv.fr]]|
|r|[[⇘|https://www.gendarmerie.interieur.gouv.fr/contact/cert/CECYBER-GN-CCG-RFC2350-EN.pdf%20]]|
|t|+++[🕾] +33 788 021 077 === |
|7|x|
|d|FR|
|y|Institutionnel|
|u|[[⇗|https://www.gendarmerie.interieur.gouv.fr/contact/cert]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Generali France]]>>/%
|1|x|
|aFR|✔|
|c|2023|
|m|+++[🖂] csirt[@]generali[.]fr === |
|f|🇫🇷|
|n|CSIRT-Generali|
|o|Generali France|
|p|[[0xC9728A7B|https://pgp.circl.lu/pks/lookup?search=0xC9728A7B&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Interne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - GIE Si-nerGIE]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] csirt[@]si-nergie[.]tech === |
|f|🇫🇷|
|n|CSIRT Si-nerGIE|
|o|GIE Si-nerGIE|
|p|[[0x1E7D4F3E|https://pgp.circl.lu/pks/lookup?search=0x1E7D4F3E&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Externe|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - GIP RENATER]]>>/%
|0ld|+++[🖂] cert[@]support[.]renater[.]fr === |
|1|[[✔|https://first.org/members/teams/cert-renater]] ^^1993^^|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-renater.html]] ^^2001^^|
|aFR|✔|
|c|1993|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] certsvp[@]renater[.]fr === |
|n|CERT RENATER|
|o|GIP RENATER|
|p|[[0x7D8BBE55|https://pgp.circl.lu/pks/lookup?search=0x7D8BBE55&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +33.1.53942044 === |
|u|[[⇗|https://services.renater.fr/ssi/cert/index]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - GRDF]]>>/%
|o|GRDF|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|CERT GRDF|
|u|[[⇗|https://www.grdf.fr/cert]]|
|m|+++[🖂] cert[@]grdf[.]fr === |
|t|+++[🕾] +33.9.69370538 === |
|aFR|x|
|y|Interne|
|7|x|
|1|x|
|c|2022|
|r|[[⇘|https://www.grdf.fr/documents/10184/5567990/GRDF_RFC2350_V1.3.pdf/b8fac46d-a897-655c-db4b-a1bd7b026af8]]|
|p|[[0x6F4CC495|https://www.grdf.fr/documents/10184/5547096/cert-grdf.public.asc/3bfc2bd0-242d-649a-0198-efbdc3b6919a]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - KNDS]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] cert[@]knds[.]fr === |
|f|🇫🇷|
|n|CERT KNDS ((*(aussi appelé 'CTA International CERT' — anciennement CERT NEXTER)))|
|o|KNDS ((*(Anciennement : Groupe Nexter)))|
|p|[[0x715FAEA2|https://www.knds.fr/sites/default/files/CERT/public_key.asc]]|
|r|[[⇘|https://www.knds.fr/sites/default/files/CERT/RFC%202350.pdf]]|
|t|+++[🕾] +33.1.3949.8585 === |
|7|x|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.knds.fr/cert.html]]|
|z|eu|
|0ld|+++[🖂] cert[@]nexter-group[.]fr === |
/% https://www.nexter-group.fr/index.php/cert.html 0xB55A29F5 https://www.nexter-group.fr/cert/public_key.asc
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Groupe ADSN]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|?|
|d|FR|
|f|🇫🇷|
|m|x|
|n|CSIRT Groupe ADSN|
|o|Groupe ADSN|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|t|x|
|u|x|
|y|Externe|
|z|eu|
|C_P|13770|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Groupe SEB]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|?|
|d|FR|
|f|🇫🇷|
|m|x|
|n|CERT Groupe SEB|
|o|Groupe SEB|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|t|x|
|u|x|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - GRTgaz]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] Cert[@]grtgaz[.]com === |
|f|🇫🇷|
|n|CERT GRTgaz|
|o|GRTgaz|
|p|[[0xEA978364|https://pgp.circl.lu/pks/lookup?search=0xEA978364&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.grtgaz.com/cert]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Hermès]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] Cert[@]hermes[.]com === |
|f|🇫🇷|
|n|CERT Hermès|
|o|Hermès|
|p|[[0xEAAB2F66|https://www.hermes.com/cert/cert_hermes_public.asc]]|
|r|[[⇘|https://www.hermes.com/cert/rfc2350.pdf]]|
|7|x|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.hermes.com/cert/rfc2350.pdf]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Interpol]]>>/%
|o|Interpol|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|INTERPOL ISIRT|
|u|[[⇗|https://www.interpol.int]]|
|t|+++[🕾] +33.4.7244.7354 === |
|h|+++[☎] +33.4.7244.7166 === |
|m|+++[🖂] isirt[@]interpol[.]int === |
|aFR|x|
|y|International|
|7|[[Listed|https://trusted-introducer.org/directory/teams/isirt.html]]|
|1|[[✔|https://first.org/members/teams/isirt]]|
|c|2009|
|r|@@color:#E1000F;''X''@@|
|p|0x88BBEA97|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Inquest]]>>/%
|o|Inquest|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|CSIRT-INQUEST|
|u|[[⇗|https://www.inquest-risk.com/nos-specialites/gestion-crise-informatique/]]|
|t|+++[🕾] +33.1.76391215 === |
|m|+++[🖂] csirt[@]inquest-risk[.]com === |
|aFR|x|
|y|Externe|
|7|x|
|1|x|
|c|2022|
|r|[[⇘|https://www.inquest-risk.com/app/uploads/sites/2/2023/08/rfc2350-csirt-inquest-v1.1.pdf]]|
|p|[[0xC11B8BC5|https://drive.google.com/file/d/1nv6-u9OzahHaZRqlvAoImtWbwLC7BF_W/view?usp=share_link]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - I-Tracing]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] cert[@]i-tracing[.]com === |
|f|🇫🇷|
|n|CERT I-TRACING|
|o|I-Tracing|
|pAM|PAMS^^[[⇗|https://cyber.gouv.fr/produits-services-qualifies/i-tracing]]^^ |
|p|[[0x457BC04A|https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3f9c1033457bc04a]]|
|r|[[⇘|https://i-tracing.com/app/uploads/2024/03/ITR-CERT-RFC2350-EN-1.3.pdf]]|
|t|+++[🕾] +33.1.70946990 === |
|7|x|
|d|FR|
|y|Externe|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Intrinsec Sécurité]]>>/%
|1|x|
|7|Listed|
|aFR|✔|
|c|2013|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]intrinsec[.]com === |
|n|CERT Intrinsec|
|o|Intrinsec Sécurité|
|pAC| [[✓|https://cyber.gouv.fr/produits-services-qualifies/intrinsec-securite]] |
|pRi|PRIS^^[[⇗|https://cyber.gouv.fr/produits-services-qualifies/intrinsec-securite-2]]^^ |
|p|[[0xE8AFD0D5|https://pgp.circl.lu/pks/lookup?search=0xE8AFD0D5&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|u|[[⇗|https://www.intrinsec.com/cert-intrinsec/]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Kering]]>>/%
|1|[[✔|https://first.org/members/teams/kering-cert]] ^^2024^^|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/kering-cert-fr.html]]|
|aFR|✔|
|c|2022|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] CERT[@]kering[.]com === |
|n|Kering-CERT|
|o|Kering|
|p|[[0xE6CEDCDE|https://pgp.circl.lu/pks/lookup?search=0xE6CEDCDE&fingerprint=on&op=index]]|
|r|[[⇘|https://www.kering.com/api/download-file/?path=KERING_CERT_RFC_2350_public_e1ed45c0db.pdf]]|
|t|+++[🕾] +33.6.80604748 === |
|u|[[⇗|https://www.kering.com/fr/cert/]]|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - La Mutuelle Générale]]>>/%
|1|x|
|7|x|
|aFR|x|
|d|FR|
|f|🇫🇷|
|n|CSIRT La Mutuelle Générale|
|o|La Mutuelle Générale|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|t|@@color:#E1000F;''X''@@|
|u|@@color:#E1000F;''X''@@|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Filhet-Allard]]>>/%
|1|x|
|7|x|
|aFR|x|
|d|FR|
|f|🇫🇷|
|n|CSIRT Filhet-Allard|
|o|Filhet-Allard|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|t|@@color:#E1000F;''X''@@|
|u|@@color:#E1000F;''X''@@|
|v|33|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - La Poste Groupe]]>>/%
|1|[[✔|https://first.org/members/teams/cert_la_poste]] ^^2019^^|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-la-poste.html]] ^^2015^^|
|aFR|✔|
|c|2012|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]laposte[.]fr === |
|n|CERT La Poste|
|o|La Poste Groupe|
|p|[[0x3D657C2C|https://pgp.circl.lu/pks/lookup?search=0x3D657C2C&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +33.2.49097050 === |
|u|x|
|v|44263|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Lexfo SAS]]>>/%
|1|x|
|aFR|✔|
|c|2015|
|m|+++[🖂] csirt[@]lexfo[.]fr === |
|f|🇫🇷|
|n|CSIRT Lexfo|
|o|Lexfo SAS|
|p|[[0x7656FD94|https://pgp.circl.lu/pks/lookup?search=0x7656FD94&fingerprint=on&op=index]]|
|pRi|PRIS^^[[⇗|https://cyber.gouv.fr/produits-services-qualifies/lexfo]]^^ |
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Externe|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - L'Oréal]]>>/%
|1|[[✔|https://first.org/members/teams/l-oreal_csirt]]|
|aFR|✔|
|v|92110|
|c|?|
|m|+++[🖂] csirt[@]loreal[.]com === |
|f|🇫🇷|
|n|CSIRT L'Oréal|
|o|L'Oréal|
|p|[[0xD0049AA4|https://pgp.circl.lu/pks/lookup?search=0xD0049AA4&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +33.1.4756.8115 === |
|7|x|
|d|FR|
|y|Interne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - MBDA France]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] cert-fr[@]mbda-systems[.]com === |
|m|+++[🖂] cert-fr[@]mbda-systems[.]fr === |
|f|🇫🇷|
|n|CERT MBDA France|
|o|MBDA France|
|p|[[0x8C1840AD|https://pgp.circl.lu/pks/lookup?op=get&search=0xcb24be7d8c1840ad]]|
|r|[[⇘|https://www.mbda-systems.com/wp-content/uploads/2023/02/CERT-MBDA-FR_RFC2350.pdf]]|
|7|x|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.mbda-systems.com/cert/fr]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Metsys]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] cert[@]metsys[.]fr === |
|f|🇫🇷|
|n|CERT Metsys|
|o|Metsys|
|p|[[0xFE1A6B3F|https://www.metsys.fr/wp-content/uploads/2023/01/CERT-METSYS_public.asc]]|
|r|[[⇘|https://www.metsys.fr/wp-content/uploads/2023/05/CERT-METSYS_RFC2350.pdf]]|
|7|x|
|d|FR|
|y|Externe|
|u|[[⇗|https://www.metsys.fr/expertises/managed-services/cert/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - MGEN]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|2024|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]mgen[.]fr === |
|n|CERT MGEN|
|o|MGEN ((*(Mutuelle Générale de l'Education Nationale)))|
|p|[[0xB93A3C27|https://pgp.circl.lu/pks/lookup?search=0xB93A3C27&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|u|x|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - MGM Solutions]]>>/%
|o|MGM Solutions|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|CERT by M.G.M.|
|u|[[⇗|https://www.mgmsolutions.fr/cybersecurite/#remediation]]|
|v|69500|
|aFR|x|
|y|Externe|
|7|x|
|1|x|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|@@color:#E1000F;''X''@@|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Michelin]]>>/%
|1|x|
|7|[[Listed|https://trusted-introducer.org/directory/teams/cert-michelin-fr.html]]|
|aFR|✔|
|c|2014|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]michelin[.]com === |
|n|CERT Michelin|
|o|Michelin|
|p|[[0xC64D4D12|https://pgp.circl.lu/pks/lookup?search=0xC64D4D12&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|u|[[⇗|https://cert.michelin.com/]]|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Ministère de l'Agriculture]]>>/%
|o|Ministère de l'Agriculture|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|//^^(CSIRT Ministère de l'Agriculture)^^//|
|u|x|
|t|x|
|m|x|
|aFR|x|
|y|Institutionnel|
|7|x|
|1|x|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|@@color:#E1000F;''X''@@|
|zz1|marchesonline.com / appels-offres / avis / expertises-assistance-a-maitrise-d-ouvrage-formatio / ao-9045266-1 |
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Ministères Territoires Écologie Logement]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|?|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] csirt[@]ecologie[.]gouv[.]fr === |
|n|//^^(CSIRT Écologie)^^//|
|o|MTEL ((*(Ministères Territoires Écologie Logement)))|
|p|0x601924BC|
|r|@@color:#E1000F;''X''@@|
|t|x|
|u|x|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Ministère de l'Europe et des Affaires Etrangères]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|2023|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] csirt[.]diplo[@]diplomatie[.]gouv[.]fr === |
|n|MinAE / COSAE Conduite ((*(Centre des Opérations de Sécurité des Affaires Étrangères – Conduite des Opérations de Sécurité)))|
|o|Ministère de l'Europe et des Affaires Etrangères|
|p|[[0xF6534AE3|https://csirt.diplomatie.gouv.fr/ressources/csirt.diplo.pub.gpg]]|
|r|[[⇘|https://csirt.diplomatie.gouv.fr/ressources/COSAE_RFC2350.pdf]]|
|t|+++[🕾] +33 1 43 17 53 53 === |
|u|[[⇗|https://csirt.diplomatie.gouv.fr/]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Ministère de l'Intérieur]]>>/%
|1|x|
|u|[[⇗|https://csirt.diplomatie.gouv.fr/]]|
|aFR|✔|
|c|?|
|m|+++[🖂] centre-cyberdefense[@]interieur[.]gouv[.]fr === |
|f|🇫🇷|
|n|C2MI|
|o|Ministère de l'Intérieur|
|p|[[0xFC1AA7FE|https://pgp.circl.lu/pks/lookup?search=0xFC1AA7FE&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Institutionnel|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Ministère de la Justice]]>>/%
|o|Ministère de la Justice|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|//^^(CSIRT Ministère de la Justice)^^//|
|u|x|
|t|x|
|m|x|
|aFR|x|
|y|Institutionnel|
|7|x|
|1|x|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|@@color:#E1000F;''X''@@|
|zz1|linkedin.com / posts / jean-philippe-amaury-55303851_cher-r%C3%A9seau-voici-un-beau-poste-ouvert-activity-7122597766324723712-FQTa / |
|zz2|linkedin.com / jobs / view / 3738802764 / |
|zz3|republik-it.fr / decideurs-it / gouvernance / xavier-albouy-min-justice-notre-satisfaction-est-l-amelioration-du-quotidien-des-agents.html |
|zz4|justice.gouv.fr / sites / default / files / 2023-07 / JUST2321059A-annexe.pdf]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Ministère des Armées]]>>/%
|1|[[✔|https://first.org/members/teams/fr-mil-cert]] ^^2018^^|
|7|x|
|aFR|✔|
|c|2010|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] fr-mil-cert[@]def[.]gouv[.]fr === |
|n|FR-MIL-CERT ((*(France Military CERT)))|
|o|Ministère des Armées ((*(CALID)))|
|p|[[0xF512B3AF|https://pgp.circl.lu/pks/lookup?search=0xF512B3AF&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +33.1.7176.8527 === |
|u|[[⇗|https://www.defense.gouv.fr/comcyber/groupement-cyberdefense-armees-gca/centre-danalyse-lutte-informatique-defensive-calid]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Nameshield]]>>/%
|1|[[✔|https://first.org/members/teams/cert_nameshield]] ^^2022^^|
|7|Listed|
|aFR|✔|
|c|2021|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]nameshield[.]net === |
|n|CERT-Nameshield ((*(CERT-NS)))|
|o|Nameshield|
|p|[[0xFDEC46EF|https://pgp.circl.lu/pks/lookup?search=0xFDEC46EF&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|u|[[⇗|https://cert.nameshield.net/]]|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Naval Group]]>>/%
|1|…|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/navcert.html]]|
|aFR|✔|
|c|2017|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]naval-group[.]com === |
|n|Naval Group CERT ((*(NavCERT)))|
|o|Naval Group|
|p|[[0xEB4D4AB6|https://openpgp.circl.lu/pks/lookup?op=get&search=0x1c80bd00e7349a8ce32912c671cd2b86eb4d4ab6]]|
|r|[[✘|https://www.naval-group.com/sites/default/files/2024-02/NavCERT_RFC2350_2024_0.pdf]]|
|u|[[⇗|https://www.naval-group.com/fr/computer-emergency-response-team-cert/]]|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - NAXIOS]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|?|
|d|FR|
|f|🇫🇷|
|h|+++[🕾] +33 1 49 10 30 50 === |
|m|+++[🖂] cert[@]naxios[.]fr === |
|n|CERT-NAXIOS|
|o|NAXIOS|
|p|[[0xBED97A61|https://naxios.fr/uploads/public_key.asc]]|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +33 1 49 10 30 50 === |
|u|[[⇗|https://www.naxios.fr/cert-csirt/]]|
|v|92100|
|y|Externe|
|z|eu|
|C_P|92100|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - NEOSOFT]]>>/%
|o|NEOSOFT|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|CSIRT-NEOSOFT|
|u|x|
|aFR|x|
|y|Externe|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/csirt-neosoft-fr.html]]|
|1|x|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|@@color:#E1000F;''X''@@|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - ODDO BHF]]>>/%
|o|ODDO BHF|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|ODDO BHF CSIRT|
|u|[[⇗|https://www.oddo-bhf.com]]|
|aFR|x|
|y|Interne|
|7|x|
|1|[[✔|https://first.org/members/teams/oddo_bhf_csirt]]|
|c|2019|
|r|@@color:#E1000F;''X''@@|
|p|@@color:#E1000F;''X''@@|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - ON-X Groupe]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] cert[@]on-x[.]com === |
|f|🇫🇷|
|n|CERT ON-X|
|o|ON-X Groupe|
|p|[[0x8C7BCBC0|https://pgp.circl.lu/pks/lookup?search=0x8C7BCBC0&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Externe|
|u|[[⇗|https://www.on-x.com/cert]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Orange]]>>/%
|1|[[✔|https://first.org/members/teams/orange-cert-cc]] ^^2011^^|
|aFR|✔|
|c|2011|
|m|+++[🖂] cert[.]cc[@]orange[.]com === |
|f|🇫🇷|
|n|Orange-CERT-CC|
|o|Orange|
|p|[[0x38382441|https://pgp.circl.lu/pks/lookup?search=0x38382441&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|[[Listed|https://trusted-introducer.org/directory/teams/orange-cert-cc.html]]|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.orange.com/fr/cert-orange]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Orange Cyberdefense]]>>/%
|0ld|CERT-LEXSI|
|1|[[✔|https://first.org/members/teams/global_cert_orange_cyberdefense]] ^^2012^^|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-orange-cyberdefense.html]] ^^2009^^|
|aFR|✔|
|c|2003|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert-contact[.]ocd[@]orange[.]com === |
|n|CERT Orange Cyberdefense|
|o|Orange Cyberdefense|
|pAC| [[✓|https://cyber.gouv.fr/produits-services-qualifies/orange-cyberdefense]] |
|pRi|PRIS^^[[⇗|https://cyber.gouv.fr/produits-services-qualifies/orange-cyberdefense-3]]^^ |
|p|[[0xBD54B276|https://pgp.circl.lu/pks/lookup?search=0xBD54B276&fingerprint=on&op=index]]|
|r|[[⇘|https://www.orangecyberdefense.com/fileadmin/general/sites/12/2020/08/rfc2350_CERT_Orange_Cyberdefense_v2_0.pdf]]|
|u|[[⇗|https://cyberdefense.orange.com/fr/accueil/contactez-nous/]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - OVH Group]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] csirt[@]ovh[.]com === |
|f|🇫🇷|
|n|CSIRT-OVH|
|o|OVH|
|p|[[0x4EB57EF1|https://pgp.circl.lu/pks/lookup?search=0x4EB57EF1&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] 0972623001 === |
|7|x|
|d|FR|
|y|Interne|
|u|[[⇗|https://csirt.ovh.com]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Own Security]]>>/%
|1|x|
|7|Listed|
|aFR|✔|
|c|?|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]own[.]security === |
|n|OWN-CERT|
|o|Own Security|
|p|[[0x4693BE16|https://pgp.circl.lu/pks/lookup?search=0x4693BE16&fingerprint=on&op=index]]|
|r|[[⇘|https://www.own.security/rfc-2350]]|
|u|[[⇗|https://www.own.security/rfc-2350]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Police Nationale]]>>/%
|1|x|
|7|Listed|
|aFR|✔|
|c|2014|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] csirt-pj[@]interieur[.]gouv[.]fr === |
|n|CSIRT-PJ ((*(CSIRT Police Judiciaire)))|
|o|Ministère de l'Intérieur ((*(DNPJ/Direction Nationale de la Police Judiciaire)))|
|p|[[0x6A36CF72|https://pgp.circl.lu/pks/lookup?search=0x6A36CF72&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +33.1.40978122 === |
|u|x|
|v|92000|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - PwC France]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] FR_IR[@]pwc[.]com === |
|f|🇫🇷|
|n|PwC FR CSIRT|
|o|PwC France|
|p|[[0xD8D19AB9|https://pgp.circl.lu/pks/lookup?search=0xD8D19AB9&fingerprint=on&op=index]]|
|pRi|PRIS^^[[⇗|https://cyber.gouv.fr/produits-services-qualifies/pricewaterhousecoopers-advisory-1]]^^ |
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Externe|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Pernod Ricard]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] csirt[@]pernod-ricard[.]com === |
|f|🇫🇷|
|n|CSIRT Pernod Ricard|
|o|Pernod Ricard|
|p|0x5E363CFF|
|r|[[⇘|https://www.pernod-ricard.com/sites/default/files/inline-files/RFC2350%20-Pernod%20Ricard_1.pdf]]|
|7|x|
|d|FR|
|y|Interne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - RATP]]>>/%
|1|x|
|aFR|✔|
|c|2023|
|m|+++[🖂] cert-ratp[@]ratp[.]fr === |
|f|🇫🇷|
|n|CSIRT RATP|
|o|RATP|
|p|[[0xAED40BF9|https://pgp.circl.lu/pks/lookup?search=0xAED40BF9&fingerprint=on&op=index]]|
|r|[[⇘|https://ratpgroup.com/wp-content/uploads/2023/11/RFC2350_CERT_RATP.pdf]]|
|7|x|
|d|FR|
|y|Interne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - RTE]]>>/%
|1|x|
|aFR|✔|
|c|2014|
|m|+++[🖂] cert-rte[@]rte-france[.]com === |
|f|🇫🇷|
|n|CERT-RTE|
|o|RTE|
|p|[[0x7DFFDF4E|https://pgp.circl.lu/pks/lookup?search=0x7DFFDF4E&fingerprint=on&op=index]]|
|r|[[⇘|https://cert-rte.rte-france.com/RFC2350_CERTR.pdf]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/cert-rte-fr.html]]|
|d|FR|
|y|Interne|
|u|[[⇗|https://cert-rte.rte-france.com/RFC2350_CERTR.pdf]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Safran]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] csirt[@]safrangroup[.]com === |
|f|🇫🇷|
|n|CERT Safran|
|o|Safran|
|p|[[0x4F8545E2|https://pgp.circl.lu/pks/lookup?search=0x4F8545E2&fingerprint=on&op=index]]|
|r|[[⇘|https://www.safran-group.com/media/402052/download]]|
|7|x|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.safran-group.com/media/402052/download]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Sagemcom]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] csirt[@]sagemcom[.]com === |
|f|🇫🇷|
|n|CSIRT-Sagemcom ((*(CSIRT-SC)))|
|o|Sagemcom|
|p|[[0x872003E9|https://pgp.circl.lu/pks/lookup?search=0x872003E9&fingerprint=on&op=index]]|
|r|[[⇘|https://www.sagemcom.com/sites/default/files/CSIRT-RFC2350_SC_SSI_0242_C.pdf]]|
|7|x|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.sagemcom.com/fr/sagemcom-csirt]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Saint Gobain]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|?|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] csirt[@]saint-gobain[.]com === |
|n|Saint Gobain CSIRT|
|o|Saint-Gobain|
|p|[[0x5BD1A72D|https://pgp.circl.lu/pks/lookup?search=0x5BD1A72D&fingerprint=on&op=index]]|
|r|[[⇘|https://www.saint-gobain.com/sites/saint-gobain.com/files/media/document/Saint-Gobain%20CSIRT%20RFC2350.pdf]]|
|u|[[⇗|https://www.saint-gobain.com/fr/csirt]]|
|v|92400|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Scaleway]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|2024|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] csirt[@]scaleway[.]com === |
|n|CSIRT-Scaleway|
|o|Free/Proxad|
|p|[[0x7B2654BF|https://www-uploads.scaleway.com/CSIRT_Scaleway_public_key_2aa01086de.asc]]|
|r|[[⇘|https://www-uploads.scaleway.com/CSIRT_Scaleway_RFC_2350_0b40a82dd7.pdf]]|
|t|x|
|u|[[⇗|https://www.scaleway.com/fr/csirt/]]|
|y|Interne|
|z|eu|
|Commentaire|AS : 12876|
|C_P|75008 |
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Schneider Electric]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] Cert[@]se[.]com === |
|f|🇫🇷|
|n|SE-CERT|
|o|Schneider Electric|
|p|[[0x1532593F|https://pgp.circl.lu/pks/lookup?search=0x1532593F&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Interne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Seidor]]>>/%
|1|x|
|7|⇗|
|aFR|✔|
|c|?|
|d|FR|
|f|🇫🇷 / 🇪🇸|
|t|+++[🕾] +33 4 75 58 93 93 === |
|n|Seidor-CSIRT|
|o|Seidor|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|u|x|
|y|Externe|
|z|eu|
|C_P|26760|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - SEKOIA.IO]]>>/%
|1|x|
|7|⇗|
|aFR|✔|
|c|?|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]sekoia[.]io === |
|n|CERT SEKOIA.IO|
|o|SEKOIA.IO|
|p|[[0xD74685ED|https://pgp.circl.lu/pks/lookup?search=0xD74685ED&fingerprint=on&op=index]]|
|r|[[⇘|https://sekoia.io/rfc2350]]|
|u|[[⇗|https://sekoia.io/rfc2350]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - SNCF]]>>/%
|1|x|
|aFR|✔|
|c|2004|
|m|+++[🖂] cert[@]sncf[.]fr === |
|f|🇫🇷|
|n|CERT-SNCF|
|o|SNCF|
|p|[[0xC4D5555E|https://pgp.circl.lu/pks/lookup?search=0xC4D5555E&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|Listed|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.cert-sncf.fr/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - SNS Security]]>>/%
|1|x|
|aFR|✔|
|c|2020|
|m|+++[🖂] cert[@]sns-security[.]fr === |
|f|🇫🇷|
|n|CSIRT SNS-SECURITY|
|o|SNS Security|
|p|[[0x57511E0D|https://pgp.circl.lu/pks/lookup?op=get&search=0x9fa086d457511e0d]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Externe|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Société Générale]]>>/%
|1|[[✔|https://first.org/members/teams/cert_sg]] ^^2010^^|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-sg.html]] ^^2018^^|
|aFR|✔|
|c|2004|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[.]sg[@]socgen[.]com === |
|n|CERT Société Générale ((*(CERT SG)))|
|o|Société Générale|
|p|[[0xB71A3D14|https://pgp.circl.lu/pks/lookup?search=0xB71A3D14&fingerprint=on&op=index]]|
|r|[[⇘|https://cert.societegenerale.com/CERT_SG_RFC2350.pdf]]|
|u|[[⇗|https://cert.societegenerale.com/]]|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Sopra Steria Group]]>>/%
|1|x|
|aFR|✔|
|c|?|
|m|+++[🖂] cert[@]soprasteria[.]com === |
|f|🇫🇷|
|n|CERT Sopra Steria|
|o|Sopra Steria Group|
|p|[[0xD6436623|https://pgp.circl.lu/pks/lookup?search=0xD6436623&fingerprint=on&op=index]]|
|pRi|PRIS^^[[⇗|https://cyber.gouv.fr/produits-services-qualifies/sopra-steria-infrastructures-and-security-services]]^^ |
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|FR|
|y|Externe|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - STMicroelectronics]]>>/%
|1|x|
|aFR|✔|
|c|2013|
|m|+++[🖂] csirt[@]st[.]com === |
|f|🇫🇷|
|n|ST CSIRT|
|o|STMicroelectronics|
|p|[[0x1274340D|https://www.st.com/content/dam/report-vulnerabilities/pgpkey-csirt/csirt-st-csirt@st.com-2023-pub-sec.asc]]|
|r|[[⇘|https://www.st.com/content/dam/st/csirt/ST_CSIRT_RFC2350.pdf]]|
|7|Listed|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.st.com/csirt]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Stoïk]]>>/%
|1|[[✔|https://first.org/members/teams/cert-stoik]]|
|aFR|✔|
|c|2023|
|m|+++[🖂] cert[@]stoik[.]io === |
|f|🇫🇷|
|n|CERT-Stoïk|
|o|Stoïk|
|p|[[0xFA1B464A|https://pgp.circl.lu/pks/lookup?search=0xFA1B464A&fingerprint=on&op=index]]|
|r|[[⇘|https://uploads-ssl.webflow.com/60be2330f31e471e6ee67e0c/63f38865d5d3dd311778120b_RFC2350%20-%20CERT%20Stoi%CC%88k.pdf]]|
|7|x|
|d|FR|
|y|Externe|
|u|[[⇗|https://www.stoik.io/cert]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - SUEZ]]>>/%
|1|x|
|aFR|✔|
|v|92040|
|c|2020|
|m|+++[🖂] csirt[@]suez[.]com === |
|f|🇫🇷|
|n|CSIRT SUEZ|
|Old|0xE172F74A|
|o|SUEZ|
|p|[[0x57A92FA3|https://suez-websites.azureedge.net/-/media/suez-global/files/publication/csirt/csirt_suez_pub_b45c3b0e75ea39c04d174c5aed547d6457a92fa3.asc]]|
|r|[[⇘|https://www.suez.com/-/media/suez-global/files/publication/csirt/suezcsirt-enhancementrfc2350v21.pdf]]|
|t|+++[🕾] +33.6.72723030 === |
|7|Listed|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.suez.com/en/csirt]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Synacktiv]]>>/%
|1|x|
|aFR|✔|
|c|2021|
|m|+++[🖂] csirt[@]synacktiv[.]com === |
|f|🇫🇷|
|n|CSIRT Synacktiv|
|o|Synacktiv|
|p|[[0x942D2A89|https://www.synacktiv.com/sites/default/files/2022-10/csirt_synacktiv.txt]]|
|r|[[⇘|https://www.synacktiv.com/sites/default/files/2022-10/rfc2350-csirt_synacktiv-en-1.2.pdf]]|
|t|+++[🕾] 0971182769 === |
|7|x|
|d|FR|
|y|Externe|
|u|[[⇗|https://www.synacktiv.com/csirt]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Synetis]]>>/%
|1|x|
|aFR|✔|
|c|2021|
|m|+++[🖂] Cert[@]synetis[.]com === |
|f|🇫🇷|
|n|CERT Synetis|
|o|Synetis|
|p|[[0xFE307877|https://pgp.circl.lu/pks/lookup?search=0xFE307877&fingerprint=on&op=index]]|
|r|[[⇘|https://www.synetis.com/download/cert-synetis-rfc2350-pdf/]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/synetis-cert-fr.html]]|
|d|FR|
|y|Externe|
|u|[[⇗|https://www.synetis.com/expertises/cert]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - SysDream]]>>/%
|1|x|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-sysdream-fr.html]]|
|aFR|✔|
|c|2021|
|d|FR|
|f|🇫🇷|
|h|+++[🕾] +33.1.83070006 === |
|MaJ|O88|
|m|+++[🖂] csirt[@]sysdream[.]io === |
|n|CERT SysDream|
|o|SysDream|
|p|[[0x109652FC|https://sysdream.com/files/cert/cert-sysdream-public_key.asc]]|
|r|[[⇘|https://sysdream.com/files/cert/CERT-SysDream-RFC2350.pdf]]|
|t|+++[🕾] +33.1.83070006 === |
|u|[[⇗|https://sysdream.com/offre/cert-reponse-a-incident-de-securite/]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - TE RAMA]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|2024|
|d|PF|
|f|🇵🇫|
|m|+++[🖂] csirt[@]terama[.]pf === |
|n|CSIRT-TERAMA|
|o|TE RAMA|
|p|[[0xBCFFEC3C|https://github.com/CSIRT-TERAMA/ressources/blob/main/CSIRT-TERAMA_0xBCFFEC3C_public.asc]]|
|r|[[⇘|https://github.com/csirt-terama/ressources/blob/main/RFC-2350-CSIRT-TERAMA-V1.0.pdf]]|
|t|+++[🕾] +689 40 455 200 === |
|u|[[⇗|https://www.terama.pf/csirt/]]|
|v|98713 |
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Tehtris]]>>/%
|o|Tehtris|
|d|FR|
|f|🇫🇷|
|v|33600|
|z|eu|
|n|CERT Tehtris|
|u|[[⇗|https://tehtris.com/fr/pourquoi-tehtris/tehtris-cert/]]|
|m|+++[🖂] cert[@]tehtris[.]com === |
|t|+++[🕾] +33.9.72430764 === |
|aFR|x|
|y|Externe|
|7|Accredited|
|1|x|
|c|2021|
|r|[[⇘|https://tehtris.com/assets/documents/rfc-2350-tehtris-cert/]]|
|p|[[0xDFB42A70|https://pgp.circl.lu/pks/lookup?search=0xDFB42A70&fingerprint=on&op=index]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Thales]]>>/%
|1|x|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/tha-cert.html]]|
|aFR|✔|
|c|2013|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]thalesgroup[.]com === |
|n|Thales CERT ((*(THA-CERT)))|
|o|Thales|
|pRi|PRIS^^[[⇗|https://cyber.gouv.fr/produits-services-qualifies/thales-cyber-solutions-2]]^^ |
|p|[[0x026A9D84|https://pgp.circl.lu/pks/lookup?op=get&search=0x4C520648026A9D84]]|
|r|[[⇘|https://www.thalesgroup.com/sites/default/files/database/document/2021-10/THALES%20CERT%20RFC%202350.pdf]]|
|u|[[⇗|https://www.thalesgroup.com/en/global/group/cert]]|
|y|Interne/Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - TotalEnergies]]>>/%
|1|[[✔|https://first.org/members/teams/totalenergies_cert]]|
|7|Listed|
|aFR|✔|
|c|2020|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] contact[@]cert[.]total === |
|n|TotalEnergies CERT|
|o|TotalEnergies|
|p|[[0xD0E4AE28|https://pgp.circl.lu/pks/lookup?search=0xB2F5B2F5D0E4AE28&fingerprint=on&op=index]]|
|r|[[⇘|https://totalenergies.com/sites/g/files/nytnzq121/files/documents/2021-06/CERT_TotalEnergies_RFC2350_EN.pdf]]|
|u|[[⇗|https://totalenergies.com/cert]]|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Ubisoft]]>>/%
|1|x|
|aFR|✔|
|c|2019|
|m|+++[🖂] cert[@]ubisoft[.]com === |
|f|🇫🇷|
|n|CERT-Ubisoft|
|o|Ubisoft|
|p|[[0xD2393352|https://pgp.circl.lu/pks/lookup?search=0xD2393352&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-ubisoft.html]]|
|d|FR|
|y|Interne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Université de Strasbourg]]>>/%
|1|x|
|aFR|✔|
|c|2011|
|m|+++[🖂] cert-osiris[@]unistra[.]fr === |
|f|🇫🇷|
|h|+++[🕾] +33.6.73444668 === |
|n|CERT OSIRIS|
|o|Université de Strasbourg / CNRS DR 10|
|p|[[0xCB86C154|https://services-numeriques.unistra.fr/fileadmin/upload/Services_numeriques/Documents/Services_OSIRIS/CERT/cert-osiris.txt]]|
|r|[[⇗|https://cert-osiris.unistra.fr/cert-osiris-rfc2530.txt]]|
|t|+++[🕾] +33.3.68854321 === |
|7|Listed|
|d|FR|
|y|Institutionnel|
|u|[[⇗|https://cert-osiris.unistra.fr/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Vade]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|2023|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] csirt[@]vadesecure[.]com === |
|n|CSIRT-VADE|
|o|Vade|
|p|[[0xE069E5EE|https://openpgp.circl.lu/pks/lookup?op=get&search=0xE101BD8CE069E5EE]]|
|r|[[⇘|https://csirt.vadesecure.com/CSIRT_VADE_RFC2350.pdf]]|
|t|+++[🕾] 0359616650 === |
|u|[[⇗|https://csirt.vadesecure.com/]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - VINCI]]>>/%
|1|[[✔|https://first.org/members/teams/vinci-cert]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/vinci-cert.html]]|
|aFR|✔|
|c|2019|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]vinci[.]com === |
|n|VINCI-CERT|
|o|VINCI|
|p|[[0x49598126|https://www.vinci.com/cert/vinci-cert.nsf/bib/files/$file/public_key_vinci_cert.txt]]|
|r|[[⇘|https://www.vinci.com/cert/vinci-cert.nsf/bib/files/$file/RFC2350-VINCI-v2.pdf]]|
|u|[[⇗|https://www.vinci.com/cert]]|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - VINCI Energies]]>>/%
|aFR|✔|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] csirt[@]vinci-energies[.]com === |
|n|CSIRT VINCI Energies|
|o|VINCI Energies|
|p|0x18EA81F6|
|r|@@color:#E1000F;''X''@@|
|u|[[⇗|https://www.vinci-energies.com/vinci-energies-csirt/]]|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Wavestone]]>>/%
|1|x|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-w.html]]|
|aFR|✔|
|c|2011|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]wavestone[.]com === |
|n|CERT-W|
|o|Wavestone|
|pRi|PRIS^^[[⇗|https://cyber.gouv.fr/produits-services-qualifies/wavestone-1]]^^ |
|p|[[0xD9923F5B|https://pgp.circl.lu/pks/lookup?search=0xD9923F5B&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|u|x|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Wallack]]>>/%
|1|x|
|v|35650|
|c|2024|
|m|+++[🖂] escouade[@]wallack[.]fr === |
|f|🇫🇷|
|MaJ|O7G|
|n|Escouade Cyber|
|o|Wallack|
|p|[[0x5AEADB5E|https://www.wallack.fr/file/EscouadeCyber.asc]]|
|r|[[⇘|https://www.wallack.fr/pdf/rfc2350/Wallack-EscouadeCyber-rfc2350-v1.0.pdf]]|
|7|✘|
|d|FR|
|t|+++[🕾] +33 2 99220285 === |
|y|Externe|
|u|[[⇗|https://www.wallack.fr/reponse-a-incident]]|
|z|eu|
|aFR|✘|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Whaller]]>>/%
|1|x|
|aFR|✘|
|v|92150|
|c|2024|
|m|+++[🖂] csirt[@]whaller[.]fr === |
|f|🇫🇷|
|n|CSIRT Whaller|
|o|Whaller|
|p|[[0x47E35C41|https://guides.whaller.com/whaller-public/csirt-whaller-public.asc]]|
|r|[[⇘|https://guides.whaller.com/whaller-public/RFC_2350_CSIRT_Whaller.pdf]]|
|7|✘|
|d|FR|
|y|Externe|
|u|[[⇗|https://whaller.com/fr/csirt]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Worldline]]>>/%
|1|x|
|7|✘|
|aFR|✔|
|c|2022|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] security[@]worldline[.]com === |
|n|CSIRT Worldline|
|o|Worldline|
|p|0x5B36988F|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +31 883 855 778 === |
|u|x|
|v|92800|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - XMCO]]>>/%
|1|x|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-xmco.html]] ^^2018^^|
|aFR|✔|
|c|2010|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] cert[@]xmco[.]fr === |
|n|CERT-XMCO|
|o|XMCO|
|p|[[0x17587ED8|https://pgp.circl.lu/pks/lookup?search=0x17587ED8&fingerprint=on&op=index]]|
|r|[[⇘|https://www.xmco.fr/cert-xmco/profile-rfc2350/]]|
|u|[[⇗|https://www.xmco.fr/le-cert-xmco/]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[PSIRT - FR - Alcatel-Lucent]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|?|
|d|FR|
|f|🇫🇷|
|l|[[⇗|https://www.linkedin.com/company/alcatellucententerprise/]]|
|m|+++[🖂] PSIRT[@]al-enterprise[.]com === |
|n|ALE PSIRT|
|o|Alcatel-Lucent Enterprise |
|p|@@color:#E1000F;''X''@@|
|u|[[⇗|https://www.al-enterprise.com/en/support/security-advisories]]|
|y|Produit|
|z|eu|
%/
<<tiddler f_IdIRT with: [[PSIRT - FR - IDEMIA]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|?|
|d|FR|
|f|🇫🇷|
|l|[[⇗|https://www.linkedin.com/company/3488/]]|
|L|[[⇗|https://www.linkedin.com/company/3488/posts/?feedView=all]]|
|m|+++[🖂] psirt[@]idemia[.]com === |
|n|IDEMIA CERT|
|o|IDEMIA Group ((*(ex: Oberthur Technologies / Morpho / OT-Morpho)))|
|p|[[0x3F7B3852|https://www.idemia.com/wp-content/uploads/2022/09/PSIRT_0x3F7B3852_PUBLIC.txt]]|
|r|@@color:#E1000F;''X''@@|
|Twi|[[⇗|https://twitter.com/IdemiaGroup]]|
|u|[[⇗|https://www.idemia.com/idemia-product-security-incident-response-team-psirt]]|
|y|Produit|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Liebherr PSIRT]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|?|
|d|FR|
|f|🇩🇪|
|j|Voir [[Liebherr PSIRT|CSIRT - DE - Liebherr PSIRT]]
|m|+++[🖂] psirt[@]wago[.]com === |
|n|Liebherr PSIRT|
|o|Liebherr Group|
|u|[[⇗|https://www.liebherr.com/fr/fra/à-propos-de-liebherr/après-vente-et-services/psirt/psirt.html]]|
|y|Produit|
|z|eu|
%/
<<tiddler f_IdIRT with: [[PSIRT - FR - Pilz]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|?|
|d|FR|
|f|🇫🇷|
|l|[[⇗|https://www.linkedin.com/company/pilz-france/]]|
|m|+++[🖂] security[@]pilz[.]com === |
|n|PSIRT Pilz|
|o|Pilz|
|p|[[0x4715E4F2|https://www.pilz.com/mam/pilz/content/uploads/openpgp_domain_encryption_pilz_com.txt]]|
|u|[[⇗|https://www.pilz.com/fr-FR/products/industrial-security/security-incident-management]]|
|y|Produit|
|z|eu|
%/
<<tiddler f_IdIRT with: [[PSIRT - FR - Renault]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|?|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] alert[.]cyber-security[@]renault[.]com === |
|n|//PSIRT Renault// ((*(Nom déduit)))|
|o|Renault Group|
|p|[[0x94CB8043|https://www.renaultgroup.com/wp-content/uploads/2024/03/pgp-key-responsible-disclosure.txt]]|
|r|✘|
|u|[[🇫🇷|https://www.renaultgroup.com/politique-de-divulgation-de-vulnerabilites/]]/[[🇬🇧|https://www.renaultgroup.com/en/vulnerability-disclosure-policy/]]|
|y|Produit|
|z|eu|
%/
<<tiddler f_IdIRT with: [[PSIRT - FR - Thales]]>>/%
|1|x|
|7|x|
|aFR|✔|
|c|2013|
|d|FR|
|f|🇫🇷|
|m|+++[🖂] psirt[@]thalesgroup[.]com === |
|n|Thales CERT ((*(THA-CERT)))|
|o|Thales|
|pRi|PRIS^^[[⇗|https://cyber.gouv.fr/produits-services-qualifies/thales-cyber-solutions-2]]^^ |
|p|[[0x8448AE39|https://pgp.circl.lu/pks/lookup?op=get&search=0x536949C48448AE39]]|
|r|[[⇘|https://www.thalesgroup.com/sites/default/files/database/document/2021-10/THALES%20CERT%20RFC%202350.pdf]]|
|u|[[CSIRT ⇗|https://www.thalesgroup.com/en/global/group/cert]]/[[PSIRT ⇗|https://www.thalesgroup.com/en/global/group/psirt]]|
|y|Interne/Externe/Produit|
|z|eu|
%/
<<tiddler f_IdIRT with: [[PSIRT - FR - WAGO PSIRT]]>>/%
|1|x|
|7|x|
|aFR|x|
|c|?|
|d|FR|
|f|🇩🇪|
|j|Voir [[WAGO PSIRT|CSIRT - DE - WAGO PSIRT]]
|m|+++[🖂] psirt[@]wago[.]com === |
|n|WAGO PSIRT|
|o|WAGO Group|
|u|[[⇗|https://www.wago.com/fr/technique-d-apos-automatisation/psirt]]|
|y|Produit|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - FR - Marc-Frédéric Gomez]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/marc_frederic_gomez]] ^^2019^^|
|7|x|
|aFR|x|
|c|2018|
|d|FR|
|f|🇫🇷|
|n|Marc-Frédéric Gomez (FR) ((*(//ad personam//)))|
|o|IICRAI ((*(Institut international de la coopération sur les risques liés aux attaques informatiques)))|
|p|[[0x0CBA01B2|https://pgp.circl.lu/pks/lookup?search=0x0CBA01B2&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|u|[[⇗|https://www.iicrai.org/]]|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - FR - Olivier Caleff]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/olivier_caleff]] ^^2018^^|
|aFR|Liaison|
|7|[[Associate|https://www.trusted-introducer.org/processes/associates.html]]|
|c|2018|
|d|FR|
|f|🇫🇷|
|MaJ|I31|
|n|Olivier Caleff (FR) ((*(//ad personam//)))|
|o|CSIRT.FR|
|p|[[0x40009346|https://pgp.circl.lu/pks/lookup?search=0x40009346&fingerprint=on&op=index]]|
|r|✘|
|u|[[⇗|https://www.csirt.fr/]]|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - FR - Anonyme (FR) #1]]>>/%
|MaJ|I3P|
|o|Anonyme ((*(A choisi de ne pas être mentionné publiquement)))|
|d|FR|
|f|🇫🇷|
|z|eu|
|n|Anonyme (FR) #1 ((*(A choisi de ne pas être mentionné publiquement)))|
|u|x|
|aFR|Liaison|
|y|Personne|
|1|x|
|7|x|
|c|?|
|r|-|
|p|@@color:#E1000F;''X''@@|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Equipe FR_1]]>>/%
|1|x|
|7|-|
|aFR|✔|
|c|?|
|d|FR|
|f|🇫🇷|
|MaJ|O5E|
|n|Equipe FR_1 ((*(A choisi de ne pas être mentionné publiquement)))|
|o|Anonyme|
|p|@@color:#E1000F;''X''@@|
|r|-|
|u|-|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Equipe FR_A]]>>/%
|1|x|
|7|-|
|aFR|x|
|c|?|
|d|FR|
|f|🇫🇷|
|l|…|
|MaJ|O5J|
|n|SOC Equipe FR_A|
|o|Anonyme|
|p|@@color:#E1000F;''X''@@|
|r|-|
|u|…|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - ATOS]]>>/%
|aFR|✔|
|c0||
|c1|2020|
|c9|2023|
|d|FR|
|f|🇫🇷|
|n|CERT-ATOS|
|n9|[[CERT-EVIDEN|CSIRT - FR - EVIDEN]]|
|o1|ATOS|
|o9|EVIDEN|
|0|Nouveau nom|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - DCSSI/ANSSI]]>>/%
|aFR|✔|
|c0||
|c1|1999|
|c9|2014|
|d|FR|
|f|🇫🇷|
|n|CERTA ((*(Centre d'expertise gouvernemental de réponse et de traitement des attaques informatiques)))|
|n9|[[CERT-FR|CSIRT - FR - ANSSI]]|
|o1|DCSSI ((*(Direction centrale de la sécurité des systèmes d'information)))|
|o9|ANSSI ((*(Agence nationale de la sécurité des systèmes d'information)))|
|0|Nouveau nom|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - ALLIACOM]]>>/%
|aFR|✔|
|c0|1994|
|c1|2012|
|c9|2017|
|d|FR|
|f|🇫🇷|
|n|AlliaCERT|
|n9|[[CERT Axians|CSIRT - FR - Axians]]|
|o1|Alliacom|
|o9|Axians Cybersecurity|
|0|Acquisition|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - APOGEE Communications]]>>/%
|aFR|✔|
|c0|1992|
|c1|1997|
|c9|2004|
|d|FR|
|f|🇫🇷|
|n|APOGEE SecWatch|
|n9|[[CERT Devoteam|CSIRT - FR - Devoteam]]|
|o1|APOGEE Communications|
|o9|DEVOTEAM|
|0|Acquisition|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Digital Security]]>>/%
|aFR|✔|
|c0|2015|
|c1|2015|
|c9|2020|
|d|FR|
|f|🇫🇷|
|n|CERT-DS|
|n9|@@color:#E1000F;CERT-ATOS@@/[[CERT-EVIDEN|CSIRT - FR - EVIDEN]]|
|o9|ATOS/EVIDEN|
|0|Acquisition|
|o1|Digital Security/ECONOCOM|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - INTEXXIA]]>>/%
|aFR|✔|
|c0|1999|
|c1|2000|
|c9|2004|
|d|FR|
|f|🇫🇷|
|n|CERT INTEXXIA|
|n9|❌|
|o1|INTEXXIA|
|o9|❌|
|0|//Liquidation//|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - LEXSI]]>>/%
|aFR|✔|
|c0|1999|
|c1|2000|
|c9|2016|
|d|FR|
|f|🇫🇷|
|n|CERT LEXSI|
|n9|[[CERT Orange Cyberdefense|CSIRT - FR - Orange Cyberdefense]]|
|o1|LEXSI|
|o9|Orange Cyberdefense|
|0|Acquisition|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - NEXTER]]>>/%
|0|Nouveau nom|
|aFR|✔|
|c0||
|c1|????|
|c9|2023|
|d|FR|
|f|🇫🇷|
|n9|[[CERT KNDS|CSIRT - FR - KNDS]]|
|n|CERT NEXTER|
|o1|NEXTER|
|o9|KNDS|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - Paris 2024]]>>/%
|0|//CSIRT éphémère ((*(Contexte Jeux Olympiques et Paralympiques 2024)))//|
|aFR|--✔--|
|c1|2023|
|c9|2024|
|d|FR|
|f|🇫🇷|
|n|CERT Paris 2024|
|n9|❌|
|o1|Paris 2024|
|o9|❌|
|p|0xC056D095|
|r|x|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FR - SOGETI]]>>/%
|aFR|✔|
|c1|2015|
|c9|2022|
|d|FR|
|f|🇫🇷|
|n|CERT Sogeti ESEC|
|n9|[[CERT-E Capgemini CIS|CSIRT - FR - Capgemini_E]]|
|o1|SOGETI|
|o9|Capgemini|
|0|Acquisition|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AD - CSIRT-AD]]>>/%
|d|AD|
|1|x|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/csirt-ad-ad.html]]|
|c|2021|
|f|🇦🇩|
|g|✔|
|m|+++[🖂] csirt[.]anc[@]govern[.]ad === |
|n|CSIRT-AD|
|o|ANC-AD ((*(National Cibersecurity Agency of Andorra)))|
|p|[[0x1E1479F5|https://www.anc.ad/wp-content/uploads/2022/09/csirt.anc_0x1E1479F5_public.asc]]|
|r|[[⇘|https://www.anc.ad/wp-content/uploads/2024/09/RFC2350_v2.0.pdf]]|
|t|+++[🕾] +376 655001 001 === |
|u|[[⇗|https://www.anc.ad/que-es-el-csirt-ad/]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AL - AL-CSIRT]]>>/%
|d|AL|
|f|🇦🇱|
|z|eu|
|n|AL-CSIRT|
|o|AKCESK ((*(Albanian National Authority on Electronic Certification and Cyber Security)))|
|u|[[⇗|https://cesk.gov.al]]|
|m|+++[🖂] info[@]cesk[.]gov[.]al === |
|t|+++[🕾] +355.04.22.21039 === |
|h|+++[☎] +355.04.22.21039 === |
|g|✔|
|y|Institutionnel|
|1|x|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/akcesk-naeccs-al.html]]|
|76|
|c|2017|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - A1-CERT]]>>/%
|1|[[✔|https://first.org/members/teams/a1-cert]]|
|aAT|✔|
|d|AT|
|f|🇦🇹|
|n|A1-CERT]]|
|n|A1-CERT|
|o|A1|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - ACOnet-CERT]]>>/%
|1|[[✔|https://first.org/members/teams/aconet-cert]]|
|aAT|✔|
|7|Accredited|
|c|2003|
|d|AT|
|f|🇦🇹|
|n|ACOnet-CERT|
|o|ACOnet|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - AEC]]>>/%
|1|[[✔|https://first.org/members/teams/aec]]|
|aAT|✔|
|75|✔|
|76|✔|
|7|[[Certified|https://trusted-introducer.org/directory/teams/aec.html]] ^^2020^^|
|c|2016|
|d|AT|
|f|🇦🇹|
|m|+++[🖂] team[@]energy-cert.at === |
|n|AEC ((*(Austrian Energy CERT)))|
|o|Austrian Energy CERT|
|sCI|✔|
|u|[[⇗|https://www.energy-cert.at]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - BKA]]>>/%
|aAT|✔|
|c||
|d|AT|
|f|🇦🇹|
|n|BKA ((*(Bundeskanzleramt)))|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - BRZ-CERT]]>>/%
|aAT|✔|
|c||
|d|AT|
|f|🇦🇹|
|n|BRZ-CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - CERT.at]]>>/%
|1|[[✔|https://first.org/members/teams/cert-at]]|
|aAT|✔|
|75|✔|
|7|[[Certified|https://trusted-introducer.org/directory/teams/certat.html]] ^^2024^^|
|d|AT|
|f|🇦🇹|
|g|✔|
|h|+++[☎] +43 664 53568 06 === |
|m|+++[🖂] team[@]cert.at === |
|n|CERT.at|
|p|0xFF4DFFB7|
|sNA|✔|
|t|+++[🕾] +43 1 5056416 78 === |
|u|[[⇗|https://www.cert.at]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - FREQUENTIS SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/frequentis_sirt]]|
|aAT|✔|
|f|🇦🇹|
|n|FREQUENTIS SIRT|
|o|FREQUENTIS|
|d|AT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - GovCERT Austria]]>>/%
|1|[[✔|
|aAT|✔|
|7|Accredited|
|76|✔|
|75|✔|
|c|2008|
|d|AT|
|f|🇦🇹|
|m|+++[🖂] reports[@]govcert.gv.at === |
|n|GovCERT Austria|
|sGO|✔|
|u|[[⇗|https://www.govcert.gv.at]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - IKT Linz CERT]]>>/%
|aAT|✔|
|c||
|d|AT|
|f|🇦🇹|
|n|IKT Linz CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - milCERT AT]]>>/%
|1|[[✔|https://first.org/members/teams/milcert_at]]|
|aAT|✔|
|n|milCERT AT ((*(Military Computer Emergency Readiness Team Austria)))|
|f|🇦🇹|
|n|MilCERT|
|o|BMLV ((*(Bundesministerium für Landesverteidigung)))|
|d|AT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - Post CSIRT]]>>/%
|aAT|✔|
|c||
|d|AT|
|f|🇦🇹|
|n|Post CSIRT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - R-IT-CERT]]>>/%
|aAT|✔|
|7|Listed|
|c|2008|
|d|AT|
|f|🇦🇹|
|n|R-IT-CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - Raiffeisen Informatik CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/r-it_csirt]]|
|d|AT|
|f|🇦🇹|
|n|R-IT CSIRT]]|
|n|Raiffeisen Informatik CSIRT|
|o|Raiffeisen Informatik|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - sCERT]]>>/%
|1|[[✔|https://first.org/members/teams/r-it_csirt]]|
|aAT|✔|
|7|Accredited|
|c|2016|
|d|AT|
|f|🇦🇹|
|n|sCERT|
|o||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - SV-CERT]]>>/%
|aAT|✔|
|c||
|d|AT|
|f|🇦🇹|
|n|SV-CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - WienCERT]]>>/%
|1|x|
|aAT|✔|
|7|[[Certified|https://trusted-introducer.org/directory/teams/wiencert.html]] ^^2020^^|
|c|2011|
|d|AT|
|f|🇦🇹|
|h|+++[☎] +43 1 4000 71001 === |
|m|+++[🖂] cert[@]wien.gv.at === |
|n|WienCERT|
|o|Municipal Council of the City of Vienna|
|p|0xD07B16FE|
|t|+++[🕾] +43 1 4000 71112 === |
|u|[[⇗|https://www.govcert.gv.at]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - AT - Aaron Kaplan]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/aaron_kaplan]]|
|f|🇦🇹|
|n|Aaron Kaplan (AT) ((*(//ad personam//)))|
|o|Aaron Kaplan|
|d|AT|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - AT - Christian Proschinger]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/christian_proschinger]]|
|f|🇦🇹|
|n|Christian Proschinger (AT) ((*(//ad personam//)))|
|o|Christian Proschinger|
|d|AT|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - AT - WILICERT]]>>/%
|aAT|✔|
|c||
|d|AT|
|f|🇦🇹|
|n|WILICERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BA - CERT RS]]>>/%
|d|BA|
|f|🇧🇦|
|n|CERT RS ((*(Republic of Srpska CERT)))|
|u|[[⇗|https://certrs.org]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BE - Approach Cyber CSIRT]]>>/%
|1|(en cours)|
|7|x|
|b|[[⇗|https://soc-blog.approach-cyber.com/]]|
|c|2022|
|d|BE|
|f|🇧🇪|
|h|+++[☎] +32 10 83 21 06 === |
|l|[[⇗|https://www.linkedin.com/company/16513/]]|
|m|+++[🖂] csirt[@]approach-cyber[.]com === |
|n|Approach Cyber CSIRT|
|o|Approach Cyber|
|p|0x0E6318EC|
|r|[[⇘|https://www.approach-cyber.com/sites/default/files/rfc2350-approach_1.pdf]]|
|t|+++[🕾] +32 10 83 21 11 === |
|u|[[⇗|https://www.approach-cyber.com/en/cyber-emergency-services.html]]|
|y|[[⇗|https://twitter.com/ApproachCyber]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BE - BELNET CERT]]>>/%
|1|[[✔|https://first.org/members/teams/belnet_cert]]|
|c|2004|
|75|✔|
|76|✔|
|f|🇧🇪|
|n|BELNET CERT|
|o|BELNET|
|p|0x0E6318EC|
|r|@@color:#E1000F;''X''@@|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/belnet-cert.html]]|
|d|BE|
|y|Externe|
|u|[[⇗|https://cert.belnet.be/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BE - CCB]]>>/%
|1|[[✔|https://first.org/members/teams/centre_for_cybersecurity_belgium-ccb]]|
|75|✔|
|76|✔|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/certbe.html]]|
|c|2009|
|d|BE|
|f|🇧🇪|
|g|✔|
|h|+++[☎] +32.2.501.0560
''uniquement'' en cas d'''urgence'' pour les ''opérateurs ou entités essentiels'' === |
|m|+++[🖂] incidents[@]ccb[.]belgium[.]be === |
|n|CCB ((*(Centre for Cybersecurity Belgium)))|
|o|Centre for Cybersecurity Belgium|
|p|0x68842545|
|r|[[⇘|https://ccb.belgium.be/fr/cert/service-definition-document]]|
|t|+++[🕾] +32.2.501.0560 === |
|u|[[⇗|https://ccb.belgium.be/cert/]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BE - European Air Traffic Management]]>>/%
|1|✔|
|c|2019|
|f|🇧🇪|
|j|Membre de l'[[EU Aviation ISAC|ISAC - EU - EA-ISAC]]|
|n|EATM-CERT|
|g|✔|
|o|European Air Traffic Management|
|p|[[0xADCE88E4|https://www.eurocontrol.int/sites/default/files/2019-11/eatm-cert-pgp-key_0.zip]]|
|r|[[⇘|https://www.eurocontrol.int/sites/default/files/2020-02/rfc2350.zip]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/eatm-cert.html]]|
|d|BE|
|y|Institutionnel|
|y|Sectoriel|
|u|[[⇗|https://www.eurocontrol.int/service/european-air-traffic-management-computer-emergency-response-team]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BE - European Institutions]]>>/%
|1|[[✔|https://first.org/members/teams/cert-eu]]|
|75|✔|
|76|✔|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-eu.html]]|
|Advisories_Feed|[[⇗|https://cert.europa.eu/publications/security-advisories-rss]]|
|Advisories|[[⇗|https://cert.europa.eu/publications/security-advisories/]]|
|b|[[⇗|https://cert.europa.eu/blog/]]|
|CTI|[[⇗|https://cert.europa.eu/publications/threat-intelligence-rss]]|
|CTI|[[⇗|https://cert.europa.eu/publications/threat-intelligence/]]|
|CVD|[[⇗|https://cert.europa.eu/coordinated-vulnerability-disclosure-policy]]|
|c|2011|
|d|BE|
|f|🇧🇪|
|Git|[[⇗|https://github.com/certeu]]|
|g|✔|
|l|[[⇗|https://www.linkedin.com/company/certeu/]]|
|L|[[⇗|https://www.linkedin.com/company/certeu/posts/?feedView=all]]|
|Mtd|[[⇗|https://infosec.exchange/@cert_eu]]|
|n|CERT-EU ((*(Cybersecurity Service for the Union institutions, bodies, offices and agencies)))|
|o|European Union|
|p|[[0x891D04EC|https://cert.europa.eu/files/certs/CERT-for-the-European-Institutions.asc]]|
|r|[[⇘|https://cert.europa.eu/static/files/RFC2350.pdf]]|
|Twi|[[⇗|https://twitter.com/CERTEU]]|
|t|+++[🕾] +32 2 299 0005 === |
|u|[[⇗|https://cert.europa.eu/]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BE - Exclusive Networks Global SOC]]>>/%
|1|[[✔|https://first.org/members/teams/exn-gsoc]]|
|c|2021|
|f|🇧🇪|
|n|EXN-GSOC|
|o|Exclusive Networks Group|
|p|0x33AF1CF9|
|r|@@color:#E1000F;''X''@@|
|7|[[Certified|https://trusted-introducer.org/directory/teams/exn-gsoc-be.html]] ^^2024^^|
|d|BE|
|y|Externe|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BE - KBC Group CERT]]>>/%
|1|[[✔|https://first.org/members/teams/kbc_group_cert]]|
|c|2008|
|f|🇧🇪|
|n|KBC Group CERT|
|o|KBC Group|
|p|0xBDC5EBF7|
|r|@@color:#E1000F;''X''@@|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/kbc-group-cert.html]]|
|d|BE|
|y|…|
|u|[[⇗|https://www.kbc.com/en/security]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BE - NATO CSC]]>>/%
|1|[[✔|https://first.org/members/teams/nato_csc]]|
|c|?|
|f|🇧🇪|
|n|NATO CSC ((*(NATO Cyber Security Centre)))|
|o|OTAN / NATO|
|p|[[0x11B4DCE7|https://pgp.circl.lu/pks/lookup?search=0x11B4DCE7&fingerprint=on&op=index]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|BE|
|y|Institutionnel|
|u|[[⇗|https://www.ncirc.nato.int/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BE - NATO CIRC/CC]]>>/%
|1|[[✔|https://first.org/members/teams/ncirc_cc]]|
|c|?|
|f|🇧🇪|
|n|NATO CIRC/CC ((*(NATO Computer Incident Response Capability - Coordination Center)))|
|o|OTAN / NATO|
|p|[[0xD9F2C24F|https://www.first.org/members/teams/ncirc_cc]]|
|r|@@color:#E1000F;''X''@@|
|7|x|
|d|BE|
|y|Institutionnel|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BE - NRB SA/NV]]>>/%
|1|x|
|c|?|
|f|🇧🇪|
|n|NRB-CSIRT|
|o|NRB SA/NV|
|p|0x91CA58D8|
|r|@@color:#E1000F;''X''@@|
|7|[[Listed|https://trusted-introducer.org/directory/teams/nrb-csirt-be.html]]|
|d|BE|
|y|…|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BE - NVISO CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/nviso_csirt]]|
|c|?|
|f|🇧🇪|
|n|NVISO CSIRT|
|o|NVISO|
|p|0x2CD0F536|
|r|@@color:#E1000F;''X''@@|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/nviso-csirt.html]]|
|d|BE|
|y|Externe|
|u|[[⇗|https://www.nviso.eu/en/service/8/247-incident-response]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BE - Proximus Cyber SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/pxs-csirt]]|
|7|[[Certified|https://trusted-introducer.org/directory/teams/pxs-csirt.html]] ^^2020^^|
|c|?|
|d|BE|
|f|🇧🇪|
|m|+++[🖂] csirt[@]proximus[.]com === |
|n|PXS-CSIRT|
|o|Proximus|
|p|0x7CFBC5B3|
|r|[[⇘|https://www.proximus.com/dam/jcr:39d8bcfd-97fa-4819-8a68-cbf09ac6aaec/CSIRT_RFC2350_Description_v.1.pdf]]|
|u|[[⇗|https://www.proximus.com/csirt]]|
|y|Externe|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BE - Xameco-CSIRT]]>>/%
|1|x|
|c|2017|
|f|🇧🇪|
|n|Xameco-CSIRT|
|o|Xameco|
|p|0xD973A51A|
|r|@@color:#E1000F;''X''@@|
|7|[[Listed|https://trusted-introducer.org/directory/teams/xameco-csirt.html]]|
|d|BE|
|y|Externe|
|u|[[⇗|https://xameco.be/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - BE - Christian Horchert]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/christian_horchert]]|
|c|2023|
|f|🇧🇪|
|n|Christian Horchert (BE) ((*(//ad personam//)))|
|o|Christian Horchert|
|p|-|
|r|✘|
|7|x|
|d|BE|
|y|Personne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - BE - Koen Van Impe]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/koen_van_impe]]|
|c|2017|
|f|🇧🇪|
|n|Koen Van Impe (BE) ((*(//ad personam//)))|
|o|Koen Van Impe / Cudeso|
|p|-|
|r|✘|
|7|x|
|d|BE|
|y|Personne|
|u|[[⇗|https://cudeso.be/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - BE - Stephen Corbiaux]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/stephen_corbiaux]]|
|c|?|
|f|🇧🇪|
|n|Stephen Corbiaux (BE) ((*(//ad personam//)))|
|o|Stephen Corbiaux|
|p|-|
|r|✘|
|7|x|
|d|BE|
|y|Personne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - BE - Trey Darley]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/trey_darley]]|
|c|2023|
|f|🇧🇪|
|n|Trey Darley (BE) ((*(//ad personam//)))|
|o|Trey Darley|
|p|-|
|r|✘|
|7|x|
|d|BE|
|y|Personne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - BE - Xavier Mertens]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/xavier_mertens]]|
|c|2017|
|f|🇧🇪|
|n|Xavier Mertens (BE) ((*(Xameco)))|
|o|Xavier Mertens|
|p|0xD973A51A|
|r|✘|
|7|x|
|d|BE|
|y|Personne|
|u|[[⇗|https://xameco.be/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - BE - David Durvaux]]>>/%
|1|x|
|7|[[Associate|https://www.trusted-introducer.org/processes/associates.html]]|
|c|?|
|d|BE|
|f|🇧🇪|
|n|David Durveaux (BE) ((*(//ad personam//)))|
|o|David Durveaux|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|u|x|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - BE - Anonyme (BE) #1]]>>/%
|1|x|
|c|?|
|f|🇧🇪|
|n|Anonyme (BE) #1|
|num|1206|
|o|Anonyme (BE) ((*(A choisi de ne pas être mentionné publiquement)))|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|7|[[Associate|https://www.trusted-introducer.org/processes/associates.html]]|
|d|BE|
|y|Personne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - BE - Anonyme (BE) #2]]>>/%
|1|x|
|c|?|
|f|🇧🇪|
|n|Anonyme (BE) #2|
|num|1320|
|o|Anonyme (BE) ((*(A choisi de ne pas être mentionné publiquement)))|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|7|[[Associate|https://www.trusted-introducer.org/processes/associates.html]]|
|d|BE|
|y|Personne|
|u|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BG - CERT Bulgaria]]>>/%
|n|CERT Bulgaria|
|d|BG|
|f|🇧🇬|
|u|[[⇗|https://govcert.bg]]|
|m|+++[🖂] cert[@]govcert.bg === |
|g|✔|
|y|Institutionnel|
|75|✔|
|sGO|✔|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BY - CERT.BY]]>>/%
|1|[[✔|https://first.org/members/teams/cert-by]] (Suspended)|
|f|🇧🇾|
|g|✔|
|n|CERT.BY ((*(National CERT of Belarus)))|
|7|x|
|d|BY|
|y|Institutionnel|
|u|[[⇗|https://cert.by]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - BY - BeCloud CERT TEAM]]>>/%
|1|[[✔|https://first.org/members/teams/bc-cert-by]]|
|f|🇧🇾|
|n|BeCloud CERT TEAM|
|o|BeCloud|
|d|BY|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - CC-SEC]]>>/%
|d|CH|
|f|🇨🇭|
|n|CC-SEC|
|1|[[✔|https://first.org/members/teams/cc-sec]]|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Compass-CSIRT]]>>/%
|o|Compass|
|d|CH|
|f|🇨🇭|
|n|Compass-CSIRT ((*(Compass Security Digital Forensics and Incident Response Team)))|
|u|[[⇗|https://www.compass-security.com/en]]|
|t|+++[🕾] +41.58.510.3600 === |
|h|+++[☎] +41.44.505.1337 ^^CH Zurich SOS LEET^^ === |
|m|+++[🖂] sos[@]compass-security[.]com === |
|b|[[⇗|https://blog.compass-security.com/]]|
|Bss|[[⇗|https://blog.compass-security.com/feed/]]|
|l|[[⇗|https://www.linkedin.com/company/compass-security-ag/]]|
|L|[[⇗|https://www.linkedin.com/company/compass-security-ag/posts/?feedView=all]]|
|1|[[✔|https://first.org/members/teams/compass-csirt]]|
|7|x|
|y|Commercial|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - CERN CERT]]>>/%
|o|CERN|
|d|CH|
|f|🇨🇭|
|n|CERN CERT|
|u|[[⇗|https://cern.ch/security/services/en/emergency.shtml]]|
|1|x|
|7|[[Listed|https://trusted-introducer.org/directory/teams/cern-cert-ch.html]]|
|c|2000|
|r|@@color:#E1000F;''X''@@|
|p|0xA9A7C562|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - CERT-DFi]]>>/%
|o|Dfi|
|d|CH|
|f|🇨🇭|
|n|CERT-DFi|
|u|[[⇗|https://www.dfi.ch/cybersecurite/]]|
|t|+++[🕾] +41.22.706.2288 === |
|m|+++[🖂] cert-dfi[@]dfi[.]ch === |
|1|[[✔|https://first.org/members/teams/cert-dfi]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/cert-dfi.html]]|
|c|2016|
|r|@@color:#E1000F;''X''@@|
|p|0x53E74E27|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - CERT-Post]]>>/%
|o|Poste Suisse / Swiss Post|
|d|CH|
|f|🇨🇭|
|n|CERT-Post|
|1|[[✔|https://first.org/members/teams/cert-post]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-post.html]]|
|c|2000|
|r|@@color:#E1000F;''X''@@|
|p|0x53E74E27|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - ETH CSIRT]]>>/%
|o|ETH Zurich ((*(Swiss Federal Institute of Technology IT Services: IT Security Competence Center)))|
|d|CH|
|f|🇨🇭|
|n|ETH CSIRT|
|1|x|
|7|[[Certified|https://trusted-introducer.org/directory/teams/eth-csirt-ch.html]] ^^2021^^|
|c|1996|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - OFCS/NCSC.ch/GovCERT.ch]]>>/%
|1|[[✔|https://first.org/members/teams/ncsc-ch]]|
|76|✔|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/govcertch.html]]|
|c|2008|
|d|CH|
|f|🇨🇭|
|g|✔|
|h|+++[🕾] +41.58.4626033 === |
|m|+++[🖂] incidents[@]govcert[.]ch === |
|n|GovCERT CH/NCSC.ch ((*(National Cyber Security Centre Switzerland)))|
|o|Office Fédéral de la CyberSécurité ((*(anciennement National Cyber Security Centre )))|
|p|[[0x5EB45C3B|https://www.ncsc.admin.ch/dam/ncsc/de/dokumente/infos-it-spezialisten/keys/govcert-ch.asc.download.asc/govcert-ch.asc]]|
|r|[[⇘|https://www.ncsc.admin.ch/dam/ncsc/de/dokumente/infos-it-spezialisten/govcert/govcert-ncsc-rfc2350.txt.download.txt/govcert-ncsc-rfc2350.txt]]|
|t|+++[🕾] +41.58.4626033 === |
|u|[[⇗|https://www.ncsc.admin.ch/]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Hacknowledge CSIRT]]>>/%
|o|Hacknowledge SA|
|d|CH|
|f|🇨🇭|
|n|Hacknowledge CSIRT|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/hacknowledge-csirt-ch.html]]|
|1|[[✔|https://first.org/members/teams/hacknowledge]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/hacknowledge-csirt-ch.html]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Hitachi Energy PSIRT]]>>/%
|1|x|
|7|[[Listed|https://trusted-introducer.org/directory/teams/hitachi-energy-psirt.html]]|
|d|CH|
|f|🇨🇭|
|n|Hitachi Energy PSIRT|
|o|Hitachi Energy|
|y|Produit|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - InfoGuard Cyber Defence Center]]>>/%
|1|[[✔|https://first.org/members/teams/ig-cdc]]|
|c|2015|
|m|+++[🖂] investigations[@]infoguard[.]ch === |
|f|🇨🇭|
|h|+++[☎] +41.41.7491999 === |
|n|IG-CDC ((*(InfoGuard Cyber Defence Center)))|
|o|InfoGuard|
|t|+++[🕾] +41.41.7491999 === |
|7|x|
|d|CH|
|u|[[⇗|https://www.infoguard.ch/en/report-an-incident]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - ISPIN-CERT]]>>/%
|o||
|d|CH|
|f|🇨🇭|
|n|ISPIN-CERT|
|1|[[✔|https://first.org/members/teams/ispin-cert]]|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Kudelski Security CERT]]>>/%
|o|Kudelski|
|d|CH|
|f|🇨🇭|
|n|KS-CERT ((*(Kudelski Security CERT)))|
|1|[[✔|https://first.org/members/teams/ks-cert]]|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Migros CSIRT]]>>/%
|o|Migros|
|d|CH|
|f|🇨🇭|
|n|Migros CSIRT|
|1|[[✔|https://first.org/members/teams/migros_csirt]]|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - MSC Cruises CSIRT]]>>/%
|o|MSC Cruises|
|d|CH|
|f|🇨🇭|
|n|MSC Cruises CSIRT|
|1|[[✔|https://first.org/members/teams/msc_cruises_csirt]]|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Nestlé CERT - Cyber SOC]]>>/%
|o|Nestlé|
|d|CH|
|f|🇨🇭|
|n|NesCERT ((*(Nestlé CERT - Cyber Security Operations Center)))|
|1|[[✔|https://first.org/members/teams/nescert]]|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Oneconsult International CSIRT]]>>/%
|o|Oneconsult|
|d|CH|
|f|🇨🇭|
|n|OCINT-CSIRT ((*(Oneconsult International CSIRT)))|
|1|[[✔|https://first.org/members/teams/ocint-csirt]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/ocint-csirt-ch.html]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Open Systems AG CERT]]>>/%
|o|Open Systems AG|
|d|CH|
|f|🇨🇭|
|n|OS-CERT ((*(Open Systems AG CERT)))|
|1|[[✔|https://first.org/members/teams/os-cert]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/os-cert-ch.html]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - PMI CERT]]>>/%
|o||
|d|CH|
|f|🇨🇭|
|n|PMI CERT|
|1|[[✔|https://first.org/members/teams/pmi_cert]]|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Proton-CERT]]>>/%
|o|Proton|
|d|CH|
|f|🇨🇭|
|n|Proton-CERT|
|1|[[✔|https://first.org/members/teams/proton-cert]]|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Redguard-CSIRT]]>>/%
|o|Redguard|
|d|CH|
|f|🇨🇭|
|n|Redguard-CSIRT ((*(Redguard Incident Response Team)))|
|1|[[✔|https://first.org/members/teams/redguard-csirt]]|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Richemont CSIRT]]>>/%
|o|Richemont|
|d|CH|
|f|🇨🇭|
|n|RIC-CSIRT ((*(Richemont CSIRT)))|
|u|[[⇗|https://csirt.richemont.com/]]|
|t|+++[🕾] +1.716.455.2367 === |
|h|+++[☎] +1.716.455.2367 === |
|m|+++[🖂] csirt[@]richemont[.]com === |
|1|[[✔|https://first.org/members/teams/ric-csirt]]|
|7|x|
|r|[[⇘|https://csirt.richemont.com/RICHEMONT-CSIRT.txt]]|
|p|[[0xB7CF12A7|https://keys.openpgp.org/vks/v1/by-fingerprint/925C0FED346142D9E67D27553C12055CB7CF12A7]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Swiss Federal Railways CERT]]>>/%
|o|Swiss Federal Railways|
|d|CH|
|f|🇨🇭|
|n|SBB CERT ((*(Swiss Federal Railways CERT)))|
|o|Swiss Federal Railways|
|1|[[✔|https://first.org/members/teams/sbb_cert]]|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - SIX-SIRT]]>>/%
|o|SIX|
|d|CH|
|f|🇨🇭|
|n|SIX-SIRT ((*(SIX Security Incident Response Team)))|
|1|[[✔|https://first.org/members/teams/six_security_incident_response_team-sirt]]|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Swisscom CSIRT]]>>/%
|o|Swisscom|
|d|CH|
|f|🇨🇭|
|n|Swisscom CSIRT|
|1|[[✔|https://first.org/members/teams/swisscom_csirt]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/swisscom-csirt.html]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Swiss Post CERT]]>>/%
|1|[[✔|https://first.org/members/teams/cert-post]]|
|c|2006|
|m|+++[🖂] cert[@]post[.]ch === |
|f|🇨🇭|
|h|+++[☎] +41.583381500 === |
|n|CERT-Post]]|
|n|Swiss Post CERT|
|o|Swiss Post ((*(Die Schweizerische Post AG)))|
|p|0xEC04758D|
|t|+++[🕾] +41.583387462 === |
|7|-|
|d|CH|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - SWITCH-CERT]]>>/%
|1|[[✔|https://first.org/members/teams/switch-cert]]|
|aCH|✔|
|m|+++[🖂] cert[@]switch[.]ch === |
|f|🇨🇭|
|h|+++[☎] +41 44 2681540 === |
|n|SWITCH-CERT|
|g|-|
|o|SWITCH|
|p|0xC5DC1472|
|t|+++[🕾] +41 44 2681540 === |
|7|[[Certified|https://trusted-introducer.org/directory/teams/switch-cert.html]] ^^2011^^|
|d|CH|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - UBS Cyber Fraud Response]]>>/%
|1|[[✔|https://first.org/members/teams/ubs_cfr]]|
|7|x|
|c|2004|
|d|CH|
|f|🇨🇭|
|h|+++[☎] +41.442341111 === |
|m|+++[🖂] abuse[@]ubs[.]com === |
|n|UBS CFR ((*(Cyber Fraud Response - anciennement CIFI / Cybercrime Intelligence & Forensic Investigation)))]]|
|o|Cyber Fraud Response|
|p|0xEC53826D|
|t|+++[🕾] +41.442348290 === |
|z|eu|
|0ld|[[Membre|https://first.org/members/teams/ubs_cifi]]|
%/
<<tiddler f_IdIRT with: [[CSIRT - CH - Zürcher Kantonalbank - CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/zurcher_kantonalbank-csirt]]|
|c|2008|
|m|+++[🖂] csirt[@]zkb[.]ch === |
|f|🇨🇭|
|n|Zürcher Kantonalbank - CSIRT]]|
|n|Zürcher Kantonalbank - CSIRT|
|o|Zürcher Kantonalbank -|
|p|0x10F79B6E|
|7|x|
|d|CH|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - CH - Bruno Halopeau (CH)]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/bruno_halopeau]]|
|c||
|f|🇨🇭|
|MaJ|O4C|
|n|Bruno Halopeau (CH) ((*(//ad personam//)))|
|o|Dreamlab Technologies|
|p|-|
|r||
|d|CH|
|y|Personne|
|u||
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - CH - Luc Dandurand (CH)]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/luc_dandurand]]|
|f|🇨🇭|
|n|Luc Dandurand (CH) ((*(//ad personam//)))|
|o|Luc Dandurand|
|d|CH|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - CH - Marco Obiso (CH)]]>>/%
|MaJ|O4C|
|o|ITU|
|d|CH|
|f|🇨🇭|
|z|eu|
|n|Marco Obiso (CH) ((*(//ad personam//)))|
|u||
|y|Personne|
|1|[[Liaison|https://first.org/members/liaisons/marco_obiso]]|
|c||
|r||
|p|-|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - CH - Martin Nagel (CH)]]>>/%
|MaJ|O4C|
|o|Niantic, Inc.|
|d|CH|
|f|🇨🇭|
|z|eu|
|n|Martin Nagel (CH) ((*(//ad personam//)))|
|u||
|y|Personne|
|1|[[Liaison|https://first.org/members/liaisons/martin_nagel]]|
|c||
|r||
|p|-|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - CH - Orhan Osmani (CH)]]>>/%
|MaJ|O4C|
|o|ITU|
|d|CH|
|f|🇨🇭|
|z|eu|
|n|Orhan Osmani (CH) ((*(//ad personam//)))|
|u||
|y|Personne|
|1|[[Liaison|https://first.org/members/liaisons/orhan_osmani]]|
|c||
|r||
|p|-|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - CH - Serge Droz (CH)]]>>/%
|MaJ|O4C|
|o||
|d|CH|
|f|🇨🇭|
|z|eu|
|n|Serge Drozé
|u||
|y|Personne|
|1|[[Liaison|https://first.org/members/liaisons/serge_droz]]|
|c||
|r||
|p|-|
|num|1111|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - CH - Anonyme (CH) #1]]>>/%
|MaJ|O4C|
|o|Anonyme (CH) ((*(A choisi de ne pas être mentionné publiquement)))|
|d|CH|
|f|🇨🇭|
|z|eu|
|n|Anonyme (CH) #1|
|u||
|y|Personne|
|1||
|7|[[Associate|https://www.trusted-introducer.org/processes/associates.html]]|
|c||
|r||
|p|-|
|num|0418|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - CH - Anonyme (CH) #2]]>>/%
|MaJ|O4C|
|o|Anonyme (CH) ((*(A choisi de ne pas être mentionné publiquement)))|
|d|CH|
|f|🇨🇭|
|z|eu|
|n|Anonyme (CH) #2|
|u||
|y|Personne|
|1||
|7|[[Associate|https://www.trusted-introducer.org/processes/associates.html]]|
|c||
|r||
|p|-|
|num|2010|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CY - National CSIRT-CY]]>>/%
|1|x|
|75|✔|
|d|CY|
|f|🇨🇾|
|g|✔|
|m|+++[🖂] info[@]csirt.cy === |
|n|National CSIRT-CY|
|sGO|✔|
|sPP|✔|
|u|[[⇗|https://csirt.cy]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CZ - ALEF-CSIRT]]>>/%
|1|x|
|c|2014|
|75|✔|
|m|+++[🖂] csirt[@]alef[.]com === |
|f|🇨🇿|
|h|+++[☎] +420 601 214 375 === |
|g|-|
|n|ALEF-CSIRT|
|o|ALEF NULA, a.s.|
|p|0x089BD1BA|
|t|+++[🕾] +420 225 090 380 === |
|d|CZ|
|7|[[Certified|https://trusted-introducer.org/directory/teams/alef-csirt.html]] ^^2020^^|
|y|Externe|
|u|[[⇗|https://www.csirt.cz]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CZ - CDC AEC]]>>/%
|1|x|
|aCZ|-|
|c|2019|
|m|+++[🖂] cdc-team[@]aricoma[.]com === |
|f|🇨🇿|
|g|x|
|n|CDC AEC|
|p|0x7FFBA05E|
|r|[[|https://www.aec.cz/cz/documents/files/2021/CDC_RFC2350_EN.pdf]]|
|t|+++[🕾] +420 775 686 490 === |
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cdc-aec.html]] ^^→©^^|
|d|CZ|
|y|Externe|
|u|[[⇗|https://www.aricoma.com/solutions/enterprise-cybersecurity/managed-detection-%C2%A0response-services/comprehensive-security-operations-centre]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CZ - CSIRT.CZ]]>>/%
|1|x|
|75|✔|
|m|+++[🖂] abuse[@]csirt[.]cz === |
|f|🇨🇿|
|g|✔|
|n|CSIRT.CZ|
|sGO|✔|
|sNA|✔|
|sPP|✔|
|7|[[Certified|https://trusted-introducer.org/directory/teams/csirt-cz.html]] ^^2021^^|
|d|CZ|
|y|Institutionnel|
|u|[[⇗|https://www.csirt.cz]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CZ - CSIRT CSAS]]>>/%
|1|-|
|44|-|
|m|-|
|f|🇨🇿|
|h|-|
|g|-|
|n|CSIRT CSAS|
|o|-|
|p|@@color:#E1000F;''X''@@|
|t|-|
|d|CZ|
|7|[[Certified|https://trusted-introducer.org/directory/teams/csirt-csas.html]] ^^2022^^|
|u|-|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CZ - CSIRT-MU]]>>/%
|1|-|
|44|-|
|m|-|
|f|🇨🇿|
|h|-|
|g|-|
|n|CSIRT-MU|
|o|-|
|p|@@color:#E1000F;''X''@@|
|t|-|
|d|CZ|
|7|[[Certified|https://trusted-introducer.org/directory/teams/csirt-mu.html]] ^^2021^^|
|u|-|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CZ - GovCERT.CZ]]>>/%
|1|x|
|75|✔|
|m|+++[🖂] cert[@]nbu[.]cz === |
|f|🇨🇿|
|g|✔|
|n|GovCERT.CZ|
|sGO|✔|
|sPP|✔|
|d|CZ|
|y|Institutionnel|
|u|[[⇗|https://www.govcert.cz]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - CZ - NESTOR]]>>/%
|1|-|
|44|-|
|m|-|
|f|🇨🇿|
|h|-|
|g|-|
|n|NESTOR|
|o|-|
|p|@@color:#E1000F;''X''@@|
|t|-|
|d|CZ|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/nestor-cz.html]]|
|u|-|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - CZ - Jan Kopriva]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/jan_kopriva]]|
|f|🇨🇿|
|n|Jan Kopriva (CZ) ((*(//ad personam//)))|
|o|Jan Kopriva|
|d|CZ|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - CERT-AA]]>>/%
|1|[[✔|https://www.first.org/members/teams/cert-aa]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/cert-aa-de.html]]|
|d|DE|
|f|🇩🇪|
|n|CERT-AA|
|c|2019|
|m|+++[🖂] cert[@]diplo[.]de === ||
|o|Auswärtiges Amt ((*(Ministère des Affaires Etrangères)))German Federal Foreign Office|
|t|+++[🕾] +49 30 1817 6897 === |
|u|[[⇗|https://www.auswaertiges-amt.de/en]]||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Airbus Protect]]>>/%
|1|[[✔|https://www.first.org/members/teams/airbus_protect]]|
|d|DE|
|f|🇩🇪|
|n|Airbus Protect|
|o|Airbus Protect|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - CERT-BA]]>>/%
|1|[[✔|https://www.first.org/members/teams/cert-ba]]|
|d|DE|
|f|🇩🇪|
|n|CERT-BA|
|c|2018|
|h|+++[☎] +49 911 179 6500 === |
|o|Agence fédérale de l'emploi ((*(Bundesagentur für Arbeit)))|
|t|+++[🕾] +49 911 179 5554 === |
[u[[[⇗|https://www.arbeitsagentur.de/cert]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - BASF gCERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/basf_gcert]]|
|aDE|✔|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/basf-gcert.html]]|
|d|DE|
|f|🇩🇪|
|n|BASF gCERT|
|o|BASF|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Bayern-CERT]]>>/%
|aDE|✔|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/bayern-cert-de.html]]|
|d|DE|
|f|🇩🇪|
|n|Bayern-CERT|
|o|Land de Bavière ((*(Landesamt für Sicherheit in der Informationstechnik)))|
|u|[[⇗|https://www.lsi.bayern.de/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - BFK]]>>/%
|1|[[✔|https://www.first.org/members/teams/bfk]]|
|aDE|✔|
|d|DE|
|f|🇩🇪|
|n|BFK|
|o|BFK edv consulting|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - BMW Group CSIRT]]>>/%
|1|[[✔|https://www.first.org/members/teams/bmw]]|
|aDE|✔|
|d|DE|
|f|🇩🇪|
|n|BMW Group CSIRT|
|o|BMW Group|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Bosch Group Cyber Defense]]>>/%
|1|[[✔|https://www.first.org/members/teams/bosch_group]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/bosch-cert-and-psirt-de.html]]|
|d|DE|
|f|🇩🇪|
|n|Bosch Group Cyber Defense|
|o|Bosch Group|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - CERT-BPOL]]>>/%
|1|[[✔|https://www.first.org/members/teams/cert-bpol]]|
|d|DE|
|f|🇩🇪|
|n|CERT-BPOL|
|o|Police Fédérale ((*(Bundespolizei)))|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - CERT BWI]]>>/%
|1|[[✔|https://www.first.org/members/teams/cert_bwi]]|
|aDE|✔|
|7|[[Certified|https://trusted-introducer.org/directory/teams/cert-bwi.html]]|
|c|2007|
|d|DE|
|f|🇩🇪|
|h|+++[☎] +49 2225 988 5800 === |
|m|+++[🖂] cert[@]bwi[.]de / bwi[.]fp[.]cert[@]bwi[.]de === |
|n|CERT BWI|
|o|BWI GmbH|
|p|0x9D7B2B77|
|t|+++[🕾] +49 2225 988 5800 === |
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - CERT-Bund]]>>/%
|1|[[✔|https://www.first.org/members/teams/cert-bund]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-bund.html]]|
|75|✔|
|76|✔|
|aDE|✔|
|c|2001|
|d|DE|
|f|🇩🇪|
|g|✔|
|m|+++[🖂] certbund[@]bsi[.]bund[.]de === |
|n|CERT-Bund|
|o|BSI ((*(Bundesamt fuer Sicherheit in der Informationstechnik)))|
|sCI|✔|
|sGO|✔|
|sNA|✔|
|t|+++[🕾] 49.228.999582.5110 === |
|u|[[⇗|https://www.bsi.bund.de/EN/CERT-Bund]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - CERTBw]]>>/%
|1|[[✔|https://www.first.org/members/teams/certbw]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/certbw-de.html]]|
|aDE|✔|
|c|2003|
|d|DE|
|f|🇩🇪|
|n|CERTBw|
|o|Ministère de la Défense ((*(Bundeswehr)))|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - CERT NRW]]>>/%
|aDE|✔|
|7|[[Listed|https://trusted-introducer.org/directory/teams/cert-nrw-de.html]]|
|d|DE|
|f|🇩🇪|
|n|CERT NRW|
|o|NRW ((*(Nordrhein-Westfalen)))|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - CERT-rlp]]>>/%
|7|[[Listed|https://trusted-introducer.org/directory/teams/cert-rlp-de.html]]|
|aDE|✔|
|d|DE|
|f|🇩🇪|
|n|CERT-rlp ((*(CERT Rheinland-Pfalz)))|
|o|Land de Rhénanie-Palatinat ((*((Rheinland-Pfalz)))|
|u|[[⇗|https://cert.rlp.de/]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - CERT-VW]]>>/%
|1|[[✔|https://www.first.org/members/teams/cert-vw]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-vw.html]]|
|aDE|✔|
|c|2004|
|d|DE|
|f|🇩🇪|
|n|CERT-VW|
|m|+++[🖂] cert-vw[@]volkswagen[.]de === ||
|o|Volkswagen AG|t|+++[🕾] +49-5361-933123 === |
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - civitec CERT]]>>/%
|7|[[Listed|https://trusted-introducer.org/directory/teams/civitec-cert-de.html]]|
|d|DE|
|f|🇩🇪|
|n|civitec CERT|
|o|civitec|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - ComCERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/comcert]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/comcert-de.html]]|
|aDE|✔|
|d|DE|
|f|🇩🇪|
|n|ComCERT|
|o|Commerzbank|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - CSIRT of the ERGO Group]]>>/%
|1|[[✔|https://www.first.org/members/teams/csirt_of_the_ergo_group]]|
|d|DE|
|f|🇩🇪|
|n|CSIRT of the ERGO Group|
|o|ERGO Group|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - CSIRT@PFV]]>>/%
|1|[[✔|https://www.first.org/members/teams/csirt-pfv]]|
|aDE|✔|
|d|DE|
|f|🇩🇪|
|n|CSIRT@PFV|
|o|Pfeiffer Vacuum Technology AG|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - CSIRT-ECB]]>>/%
|1|[[✔|https://www.first.org/members/teams/csirt-ecb]]|
|d|DE|
|f|🇩🇪|
|n|CSIRT-ECB|
|o|Banque Centrale Européenne ((*(European Central Bank)))|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - DB CSIRT]]>>/%
|1|[[✔|https://www.first.org/members/teams/db_csirt]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/db-csirt.html]]|
|d|DE|
|f|🇩🇪|
|n|DB CSIRT|
|o|Deutsche Bahn|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - DBG-CERT]]>>/%
|7|[[Accredited|https://trusted-introducer.org/directory/teams/dbg-cert-de.html]]|
|c|2014|
|d|DE/LU|
|f|🇩🇪 / 🇱🇺|
|h|+++[☎] +352 2433 3555 === |
|m|+++[🖂] cert[@]deutsche-boerse[.]com === |
|n|DBG-CERT ((*(Clearstream - Deutsche Boerse CERT)))|
|o|Clearstream / DBG ((*(Clearstream / Deutsche Boerse Group)))|
|p|0x05127ADC|
|t|+++[🕾] +49 69 2113 3555 === |
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - N-CERT]]>>/%
|aDE|✔|
|d|DE|
|f|🇩🇪|
|n|DENIC ((*(Gestionnnaier du ccTLD ".de")))|
|o|DENIC ((*(Deutsches Network Information Center)))|
|u|[[⇗:|https://www.denic.de/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Deutsche Telekom CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/deutsche_telekom_cert]]|
|aDE|✔^^2002^^|
|7|[[Certified|https://trusted-introducer.org/directory/teams/deutsche-telekom-cert.html]] ^^2020^^|
|c|2001|
|d|DE|
|f|🇩🇪|
|h|+++[☎] +49 228 181 71773 === |
|m|+++[🖂] cert[@]telekom[.]de === |
|n|Deutsche Telekom CERT|
|o|Deutsche Telekom|
|p|0xDF9C34DA|
|t|+++[🕾] +49 228 181 71773 === |
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - DFN-CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/dfn-cert]]|
|7|[[Certified|https://trusted-introducer.org/directory/teams/dfn-cert.html]] ^^2012^^|
|aDE|✔|
|c|1993|
|d|DE|
|f|🇩🇪|
|h|+++[☎] +49 40 808077 590 === |
|m|+++[🖂] dfncert[@]@dfn-cert[.]de === |
|n|DFN-CERT|
|o|DFN-CERT Services GmbH|
|p|0x1D47DE6F|
|t|+++[🕾] +49 40 808077 555 === |
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - E.ON CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/e-on_cert]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/eon-cert.html]]|
|aDE|✔|
|d|DE|
|f|🇩🇪|
|n|E.ON CERT|
|o|E.ON|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - EnBW-CERT]]>>/%
|7|[[Listed|https://trusted-introducer.org/directory/teams/enbw-cert-de.html]]|
|d|DE|
|f|🇩🇪|
|n|EnBW-CERT|
|o|EnBW|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Evonik CDT]]>>/%
|1|[[✔|https://www.first.org/members/teams/evonik_cdt]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/evonik-cdt-de.html]]|
|d|DE|
|f|🇩🇪|
|n|Evonik CDT|
|o|Evonik CDT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Fujitsu PSIRT]]>>/%
|1|[[✔|https://www.first.org/members/teams/fujitsu_psirt]]|
|d|DE|
|f|🇩🇪|
|n|Fujitsu PSIRT|
|o|Fujitsu|
|y|Produit|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - gematik CERT]]>>/%
|7|[[Accredited|https://trusted-introducer.org/directory/teams/gematik-cert-de.html]]|
|d|DE|
|f|🇩🇪|
|n|gematik CERT|
|o|gematik|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - HiSolutions Blue Team]]>>/%
|1|[[✔|https://www.first.org/members/teams/hisolutions_blue_team]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/hisolutions-blue-team-de.html]]|
|d|DE|
|f|🇩🇪|
|n|HiSolutions Blue Team|
|o|HiSolutions|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - IHK-CERT]]>>/%
|7|[[Listed|https://trusted-introducer.org/directory/teams/ihk-cert.html]]|
|aDE|✔|
|d|DE|
|f|🇩🇪|
|n|IHK-CERT|
|o|IHK|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Infineon CDC]]>>/%
|1|[[✔|https://www.first.org/members/teams/infineon_cdc]]|
|7|[[Certified|https://trusted-introducer.org/directory/teams/infineon-cdc.html]] ^^2020^^|
|c|2017|
|d|DE|
|f|🇩🇪|
|h|+++[☎] +43 51777 7100 === |
|m|+++[🖂] cert[@]infineon[.]com === |
|n|Infineon CDC|
|o|Infineon|
|p|0xA56DD27D|
|t|+++[🕾] +49 89 234 77100 === |
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - KIT-CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/kit-cert]]|
|7|[[Certified|https://trusted-introducer.org/directory/teams/kit-cert.html]]|
|d|DE|
|f|🇩🇪|
|n|KIT-CERT|
|o|Karlsruhe Institute of Technology|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Liebherr PSIRT]]>>/%
|1|x|
|7|x|
|aDE|x|
|c|?|
|d|DE|
|f|🇩🇪|
|m|+++[🖂] psirt[@]wago[.]com === |
|n|Liebherr PSIRT|
|o|Liebherr Group|
|u|[[⇗|https://www.liebherr.com/de/deu/%C3%BCber-liebherr/service-dienstleistungen/psirt/psirt.html]]|
|y|Produit|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Lufthansa Group CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/lufthansa_group_cert]]|
|aDE|✔|
|d|DE|
|f|🇩🇪|
|n|Lufthansa Group CERT|
|o|Lufthansa Group|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Mercedes Benz CIRC]]>>/%
|1|[[✔|https://www.first.org/members/teams/mercedes_benz_circ]]|
|d|DE|
|f|🇩🇪|
|n|Mercedes Benz CIRC|
|o|Mercedes Benz|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Munich Re (Group) SIRT]]>>/%
|1|[[✔|https://www.first.org/members/teams/munich_re-group-sirt]]|
|d|DE|
|f|🇩🇪|
|n|Munich Re (Group) SIRT|
|o|Munich Re Group|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - N-CERT]]>>/%
|aDE|✔|
|c|2016|
|d|DE|
|f|🇩🇪|
|m|+++[🖂] cert[@]mi[.]niedersachsen[.]de === |
|n|N-CERT|
|o|Land de Basse-Saxe ((*(Niedersachsen)))|
|t|+++[🕾] +49.511 120 4739 === |
|u|[[⇗:|https://www.govconnect.de/Unternehmen/Unsere-Projektgruppen/N-CERT/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Panasonic CSIRT EU]]>>/%
|1|[[✔|https://www.first.org/members/teams/panasonic_csirt_eu]]|
|d|DE|
|f|🇩🇪|
|n|Panasonic CSIRT EU|
|o|Panasonic|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - PRE-CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/pre-cert]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/pre-cert.html]]|
|aDE|✔|
|c|2001|
|d|DE|
|f|🇩🇪|
|n|PRE-CERT|
|o|PRESECURE Consulting GmbH|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - RUS-CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/rus-cert]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/rus-cert.html]]|
|aDE|✔|
|c|1998|
|d|DE|
|f|🇩🇪|
|n|RUS-CERT|
|o|RUS ((*(Université de Stuttgart)))|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - SAP Cybersecurity]]>>/%
|1|[[✔|https://www.first.org/members/teams/sap_cybersecurity]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/sap-cybersecurity.html]]|
|d|DE|
|f|🇩🇪|
|n|SAP Cybersecurity|
|o|SAP|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - SAX.CERT]]>>/%
|7|[[Listed|https://trusted-introducer.org/directory/teams/saxcert-de.html]]|
|aDE|✔|
|c|2011|
|d|DE|
|f|🇩🇪|
|n|SAX.CERT|
|o|SAX ((*(Staatsbetrieb Saechsische Informatik Dienste)))|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - S-CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/s-cert]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/s-cert.html]]|
|aDE|✔|
|d|DE|
|f|🇩🇪|
|n|S-CERT|
|c|2001|
|o|Sparkassen-Finanzgruppe ((*(German Savings Banks Financial Group)))|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - SEC Defence]]>>/%
|7|[[Listed|https://trusted-introducer.org/directory/teams/sec-defence-de.html]]|
|d|DE|
|f|🇩🇪|
|n|SEC Defence|
|c|2012|
|o|SEC Consult|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - secu-CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/secu-cert]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/secu-cert-de.html]]|
|aDE|✔|
|d|DE|
|f|🇩🇪|
|n|secu-CERT|
|o|SECUNET ((*(secunet Security Networks AG)))|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Siemens CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/siemens-cert]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/siemens-cert.html]]|
|aDE|✔|
|d|DE|
|f|🇩🇪|
|n|Siemens CERT|
|o|Siemens|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Siemens Healthineers CSIRT]]>>/%
|1|[[✔|https://www.first.org/members/teams/siemens_healthineers_csirt]]|
|d|DE|
|f|🇩🇪|
|n|Siemens Healthineers CSIRT|
|o|Siemens Healthineers|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - TeamViewer SIRT]]>>/%
|1|[[✔|https://www.first.org/members/teams/teamviewer_sirt]]|
|d|DE|
|f|🇩🇪|
|n|TeamViewer SIRT|
|o|TeamViewer|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - tk CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/tk_cert]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/tk-cert.html]]|
|aDE|✔|
|d|DE|
|f|🇩🇪|
|n|tk CERT|
|c|2012|
|o|ThyssenKrupp AG|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - UniMS-CERT]]>>/%
|7|[[Accredited|https://trusted-introducer.org/directory/teams/unims-cert-de.html]]|
|d|DE|
|f|🇩🇪|
|n|UniMS-CERT|
|o|Université de Münster|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - Uniper CDC]]>>/%
|7|[[Listed|https://trusted-introducer.org/directory/teams/uniper-cdc-de.html]]|
|d|DE|
|f|🇩🇪|
|n|Uniper CDC|
|o|Uniper|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - CERT@VDE]>>/%
|7|[[Accredited|https://trusted-introducer.org/directory/teams/vde.html]]|
|aDE|✔|
|c|2017|
|d|DE|
|f|🇩🇪|
|n|CERT@VDE|
|o|VDE ((*(Verband der Elektrotechnik Elektronik Informationstechnik e.V.)))|
|p|[[0x9D34F4FF|https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xcef02d2f4f06acf0c1d812c8dfbc8f549d34f4ff]]|
|r|[[⇗|https://certvde.com/en/morecertvde/rfc2350/]]|
|u|[[⇗|https://certvde.com/en/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - WAGO PSIRT]]>>/%
|1|x|
|7|x|
|aDE|x|
|c|?|
|d|DE|
|f|🇩🇪|
|m|+++[🖂] psirt[@]wago[.]com === |
|n|WAGO PSIRT|
|o|WAGO Group|
|u|[[⇗|https://www.wago.com/de/automatisierungstechnik/psirt]]|
|y|Produit|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - XING]]>>/%
|7|[[Accredited|https://trusted-introducer.org/directory/teams/xing.html]]|
|d|DE|
|f|🇩🇪|
|n|XING|
|o|XING|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DE - ZF SOC]]>>/%
|1|[[✔|https://www.first.org/members/teams/zf_soc]]|
|d|DE|
|f|🇩🇪|
|n|ZF SOC|
|c|2014|
|o|ZF Group|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DK - CFCS-DK]]>>/%
|n|CFCS-DK|
|d|DK|
|f|🇩🇰|
|z|eu|
|u|[[⇗|https://www.cfcs.dk]]|
|m|+++[🖂] cert[@]cert[.]cfcs[.]dk === |
|g|✔|
|y|Institutionnel|
|1|x|
|76|✔|
|75|✔|
|sGO|✔|
|sPP|✔|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DK - DKCERT]]>>/%
|n|DKCERT|
|d|DK|
|f|🇩🇰|
|z|eu|
|u||
|m||
|g|✔|
|1|x|
|76|-|
|75|x|
|7|[[Certified|https://trusted-introducer.org/directory/teams/dkcert.html]] ^^2024^^|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DK - itm8 CDC]]>>/%
|n|itm8 CDC|
|d|DK|
|f|🇩🇰|
|z|eu|
|u||
|m||
|g|✔|
|1|x|
|76|-|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/itm8-cdc-dk.html]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DK - JN DATA CDC]]>>/%
|n|JN DATA CDC|
|d|DK|
|f|🇩🇰|
|z|eu|
|u||
|m||
|g|✔|
|1|x|
|76|-|
|7|[[Certified|https://trusted-introducer.org/directory/teams/jn-data-cdc.html]] ^^2020^^|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DK - NORDUnet CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/nordunet_cert]]|
|c|1990|
|m|+++[🖂] cert[@]nordu[.]net === |
|f|🇩🇰|
|h|+++[☎] +45 31 62 14 03 === |
|g|-|
|n|NORDUnet CERT|
|o|NORDUnet|
|p|0x64A8DC9A|
|t|+++[🕾] +45 32 46 25 00 === |
|d|DK|
|7|[[Certified|https://trusted-introducer.org/directory/teams/nordunet-cert.html]] ^^2016^^|
|u||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - DK - TDC NET CDC]]>>/%
|n|TDC NET CDC|
|d|DK|
|f|🇩🇰|
|z|eu|
|u||
|m||
|g|✔|
|1|x|
|76|-|
|7|[[Certified|https://trusted-introducer.org/directory/teams/tdc-net-cdc-dk.html]] ^^2023^^|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - EE - CERT-EE]]>>/%
|1|[[✔|https://first.org/members/teams/cert-ee]]|
|75|✔|
|m|+++[🖂] cert[@]cert[.]ee === |
|f|🇪🇪|
|g|✔|
|n|CERT-EE ((*(CERT Estonia)))|
|sCI|✔|
|sFI|✔|
|sGO|✔|
|sNA|✔|
|7|[[Certified|https://trusted-introducer.org/directory/teams/cert-ee.html]] ^^2017^^|
|d|EE|
|y|Institutionnel|
|u|[[⇗|https://www.cert.ee]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - EE - Emre Tinaztepe]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/emre_tinaztepe]]|
|f|🇪🇪|
|n|Emre Tinaztepe (EE) ((*(//ad personam//)))|
|o|Emre Tinaztepe|
|d|EE|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Accenture CSIRT Iberia]]>>/%
|7|Listed|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/accenture-csirt-iberia]]|
|d|ES|
|f|🇪🇸|
|n|Accenture CSIRT Iberia|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - ACD-TRC]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/acd-trc]]|
|f|🇪🇸|
|n|ACD-TRC|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Ackcent CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/ackcert]]|
|7|x|
|aES|x|
|d|ES|
|f|🇪🇸|
|n|Ackcent CERT ((*(ACKCERT)))|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Agencia Vasca de Ciberseguridad]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/agencia-vasca-de-ciberseguridad-en]]|
|f|🇪🇸|
|n|Agencia Vasca de Ciberseguridad|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Aiuken - CSIRT]]>>/%
|1|[[✔|https://www.first.org/members/teams/cert-aiuken]]|
|7|Listed|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/aiuken-csirt]]|
|d|ES|
|f|🇪🇸|
|n|Aiuken - CSIRT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Andalucía CERT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/andaluciacert-en]]|
|f|🇪🇸|
|n|Andalucía CERT|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - BBVA CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/bbva_cert]]|
|7|Accredited|
|aES|x|
|d|ES|
|f|🇪🇸|
|n|Andalucía CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - BE:SEC-CSIRT]]>>/%
|1|[[✔|https://www.first.org/members/teams/be-sec-csirt]]|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/be-sec-csirt]]|
|d|ES|
|f|🇪🇸|
|n|BE:SEC-CSIRT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - BeSOC Madrid]]>>/%
|1|[[✔|https://www.first.org/members/teams/besoc_madrid]]|
|7|Accredited|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/besoc-madrid]]|
|d|ES|
|f|🇪🇸|
|n|BeSOC Madrid|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Caixabank CSIRT]]>>/%
|1|[[✔|https://www.first.org/members/teams/caixabank_team_csirt]]|
|7|Accredited|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/caixabank-csirt-en]]|
|d|ES|
|f|🇪🇸|
|n|Caixabank CSIRT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - CATALONIA-CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/catalonio-cert]]|
|7|Accredited|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/cataloniacert-en]]|
|d|ES|
|f|🇪🇸|
|n|CATALONIA-CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - CCN-CERT]]>>/%
|1|[[✔|https://first.org/members/teams/ccn-cert]]|
|76|✔|
|75|✔|
|7|Accredited|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/ccn-cert-en]]|
|c|2006|
|d|ES|
|f|🇪🇸|
|g|✔|
|h|+++[☎] +34.680.553108 === |
|m|+++[🖂] info[@]ccn-cert[.]cni[.]es === |
|n|CCN-CERT ((*(Spanish Government National Cryptologic Center - Computer Security Incident Response Team)))|
|sGO|✔|
|t|+++[🕾] +34.91.3725665 === |
|u|[[⇗|https://www.ccn-cert.cni.es]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - cdmon SORT]]>>/%
|1|[[✔|https://www.first.org/members/teams/cdmon_security_and_operations_response_team-sort]]|
|aES|x|
|d|ES|
|f|🇪🇸|
|n|cdmon SORT ((*(Security and Operations Response Team)))|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Cellnex CSIRT]]>>/%
|1|[[✔|https://www.first.org/members/teams/cellnex_csirt]]|
|aES|x|
|d|ES|
|f|🇪🇸|
|n|Cellnex CSIRT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - CERT-UAM]]>>/%
|7|Listed|
|aES|x|
|d|ES|
|f|🇪🇸|
|n|CERT-UAM|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - CERT-UC3M]]>>/%
|7|Listed|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/certuc3m-en]]|
|f|🇪🇸|
|n|CERT-UC3M|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - CIES CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/cies-csirt]]|
|f|🇪🇸|
|n|CIES CSIRT|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Cipherbit-CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/cert_cipherbit]]|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/cipherbit-cert-en]]|
|d|ES|
|f|🇪🇸|
|n|Cipherbit-CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - CSIRT.gal]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/csirt-gal-en]]|
|f|🇪🇸|
|n|CSIRT.gal|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - CSIRT-CV]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/csirt-cv]]|
|f|🇪🇸|
|n|CSIRT-CV|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - CSIRT-SATEC]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/csirt-satec]]|
|f|🇪🇸|
|n|CSIRT-SATEC|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - CSIRTNEXT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/csirtnext-en]]|
|f|🇪🇸|
|n|CSIRTNEXT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - CSIRT CARM]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/csirt-carm]]|
|f|🇪🇸|
|n|CSIRT CARM|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - CSIRT CIPHER]]>>/%
|1|[[✔|https://www.first.org/members/teams/cipher_cert]]|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/csirt-cipher-en]]|
|d|ES|
|f|🇪🇸|
|n|CSIRT CIPHER|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - CSIRT GLOBAL TELEFONICA]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/tefcsirt-en]]|
|f|🇪🇸|
|n|CSIRT GLOBAL TELEFONICA|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - CSUC-CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/csuc-csirt-en]]|
|f|🇪🇸|
|n|CSUC-CSIRT|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - CyberTrust Center - España (Fujitsu)]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/cybertrust-center-espana-en]]|
|f|🇪🇸|
|n|CyberTrust Center - España (Fujitsu)|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Cyberzaintza]]>>/%
|aES|x|]]|
|f|🇪🇸|
|n|Cyberzaintza|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Deloitte]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/deloitte-edc-en
|f|🇪🇸|
|n|Deloitte|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - ENOC-CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/enoc-csirt]]|
|f|🇪🇸|
|n|ENOC-CSIRT|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - ERIS-CERT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/eris-cert]]|
|f|🇪🇸|
|n|ERIS-CERT|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Ertzaintza SCDTI]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/ertzaintza-scdti]]|
|f|🇪🇸|
|n|Ertzaintza SCDTI|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - esCERT-UPC]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/escert-upc-en]]|
|f|🇪🇸|
|n|esCERT-UPC|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - eSOC Babel]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/esoc-babel-en]]|
|f|🇪🇸|
|n|eSOC Babel|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - ESP DEF CERT]]>>/%
|0|-|
|1|•|
|49|-|
|44|-|
|75|✔|
|7|Accredited|
|47|-|
|aES|x|
|c|2007|
|d|ES|
|f|🇪🇸|
|g|•|
|m|+++[🖂] espdef-cert[@]mde.es === |
|n|ESP DEF CERT ((*(Spanish Government National Cryptologic Center - Computer Security Incident Response Team)))|
|sGO|•|
|u|[[⇗|https://emad.defensa.gob.es]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - EULEN-CCSI-CERT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/eulen-ccsi-cert-en]]|
|f|🇪🇸|
|n|EULEN-CCSI-CERT|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Evolutio-CERT]]>>/%
|7|Listed|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/evolutio-cert-en]]|
|d|ES|
|f|🇪🇸|
|n|Evolutio-CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - EY Forensics - CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/ey-forensics-csirt-en]]|
|f|🇪🇸|
|n|EY Forensics - CSIRT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - FUJITSU CyberTrust Center]]>>/%
|7|Listed|
|aES|x|
|d|ES|
|f|🇪🇸|
|n|FUJITSU CyberTrust Center|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Global CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/global-csirt]]|
|f|🇪🇸|
|n|Global CSIRT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - GMV-CERT]]>>/%
|7|Listed|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/gmv-cert]]|
|d|ES|
|f|🇪🇸|
|n|GMV-CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - GRAIL-CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/grail-csirt]]|
|f|🇪🇸|
|n|GRAIL-CSIRT|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - GTN-CERT]]>>/%
|7|Listed|
|aES|x|
|d|ES|
|f|🇪🇸|
|n|GTN-CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Guardia Civil - Ciberinteligencia y Ciberterrorismo]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/gccyc-en]]|
|f|🇪🇸|
|n|Guardia Civil - Ciberinteligencia y Ciberterrorismo|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Guardia Civil - Departamento de Delitos Telemáticos]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/ddt-en]]|
|f|🇪🇸|
|n|Guardia Civil - Departamento de Delitos Telemáticos|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - I-CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/i-csirt-en" target="_blank" rel="noopener noreferrer]]|
|f|🇪🇸|
|n|I-CSIRT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - ICA SYS CiberSOC]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/grupo-ica-cibersoc]]|
|7|Listed|
|d|ES|
|f|🇪🇸|
|n|ICA SYS CiberSOC|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - INCIBE-CERT]]>>/%
|0|-|
|1|[[✔|https://first.org/members/teams/incibe-cert]]|
|49|-|
|76|
|44|-|
|75|✔|
|7|[[Certified|https://trusted-introducer.org/directory/teams/incibe-cert.html]] ^^2024^^|
|47|-|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/certsi-en]]|
|c|2007|
|d|ES|
|f|🇪🇸|
|g|✔|
|h|+++[☎] +34.647.300717 === |
|m|+++[🖂] incidencias[@]incibe-cert.es === |
|n|INCIBE-CERT|
|sCI|✔|
|sNA|✔|
|t|+++[🕾] +34.987.877189 === |
|u|[[⇗|https://www.incibe-cert.es]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Indra-CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/indra-csirt]]|
|f|🇪🇸|
|n|Indra-CSIRT|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - INETUM CSIRT]]>>/%
|7|Listed|
|aES|x|
|d|ES|
|f|🇪🇸|
|n|INETUM CSIRT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Innotec Security]]>>/%
|7|Accredited|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/innotec-security-csirt-en]]|
|f|🇪🇸|
|n|Innotec Security|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Innovasur]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/innovasur-en]]|
|f|🇪🇸|
|n|Innovasur|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - INTEC-CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/intec-csirt-en" target="_blank" rel="noopener noreferrer]]|
|f|🇪🇸|
|n|INTEC-CSIRT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - ITS-CERT]]>>/%
|7|Listed|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/its-cert]]|
|d|ES|
|f|🇪🇸|
|n|ITS-CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - ITXCSIRT]]>>/%
|7|Accredited|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/itxcsirt]]|
|d|ES|
|f|🇪🇸|
|n|ITXCSIRT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Kyndryl CSIRT Iberia]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/kyndryl-csirt-iberia]]|
|f|🇪🇸|
|n|Kyndryl CSIRT Iberia|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - LE-CERT]]>>/%
|7|Accredited|
|d|ES|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/le-cert-en]]|
|f|🇪🇸|
|n|LE-CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - LiveSOC INETUM CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/inetum-csirt-en" target="_blank" rel="noopener noreferrer]]|
|f|🇪🇸|
|n|LiveSOC INETUM CSIRT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Mando Conjunto del Ciberespacio]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/esp-def-cert-en]]|
|f|🇪🇸|
|n|Mando Conjunto del Ciberespacio|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - MAPFRE-CCG-CERT]]>>/%
|7|Listed|
|d|ES|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/mapfre-ccg-cert-en]]|
|f|🇪🇸|
|n|MAPFRE-CCG-CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Minsait CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/minsait-csirt]]|
|f|🇪🇸|
|n|Minsait CSIRT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - MNEMO-CERT]]>>/%
|7|Listed|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/mnemo-cert]]|
|d|ES|
|f|🇪🇸|
|n|MNEMO-CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - myCloudDoor MYCD-CERT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/mycd-cert-en]]|
|f|🇪🇸|
|n|myCloudDoor MYCD-CERT|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - NestleSOC]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/nestlesoc-en]]|
|f|🇪🇸|
|n|NestleSOC|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - NTTDATA-ES-CERT]]>>/%
|7|Listed|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/nttdata-cert-en]]|
|d|ES|
|f|🇪🇸|
|n|NTTDATA-ES-CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - NUNSYS-CERT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/nunsys-cert" target="_blank" rel="noopener noreferrer]]|
|f|🇪🇸|
|n|NUNSYS-CERT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - OCC]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/occ-en]]|
|f|🇪🇸|
|n|OCC|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - OneCyber CERT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/onecyber-cert]]|
|f|🇪🇸|
|n|OneCyber CERT|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - OneseQ CERT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/oneseq-cert]]|
|f|🇪🇸|
|n|OneseQ CERT|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Orange Spain SOC]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/orange-spain-soc-en" target="_blank" rel="noopener noreferrer]]|
|f|🇪🇸|
|n|Orange Spain SOC|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - OSSI]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/ossi" target="_blank" rel="noopener noreferrer]]|
|f|🇪🇸|
|n|OSSI|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - P3-CERT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/p3-cert]]|
|f|🇪🇸|
|n|P3-CERT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - PLX CSIRT]]>>/%
|7|Listed|
|aES|x|
|d|ES|
|f|🇪🇸|
|n|PLX CSIRT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Policía Nacional]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/policia-nacional-seguridad-logica-en]]|
|f|🇪🇸|
|n|Policía Nacional|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - RedIRIS]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/rediris-en]]|
|f|🇪🇸|
|n|RedIRIS|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - RENFE CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/renfe-csirt-en]]|
|f|🇪🇸|
|n|RENFE CSIRT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Repsol CERT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/repsol-cert]]|
|f|🇪🇸|
|n|Repsol CERT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - S-CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/s-csirt]]|
|f|🇪🇸|
|n|S-CSIRT |
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - S2 Grupo CERT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/s2-grupo-cert-en]]|
|f|🇪🇸|
|n|S2 Grupo CERT|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - S21sec CERT]]>>/%
|7|Accredited|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/s21sec-cert-en]]|
|d|ES|
|f|🇪🇸|
|n|S21sec CERT|
|o|Groupe Thales|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - SANITAS-CERT]]>>/%
|7|Listed|
|aES|x|
|d|ES|
|f|🇪🇸|
|n|SANITAS-CERT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Secure IT CSIRT]]>>/%
|7|Listed|
|d|ES|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/secureit-csirt-en]]|
|f|🇪🇸|
|n|Secure IT CSIRT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - SEIDOR CSIRT]]>>/%
|7|Listed|
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/seidor-csirt-en]]|
|d|ES|
|f|🇪🇸|
|n|SEIDOR CSIRT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - SIA-CEC CERT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/sia-cec-cert]]|
|f|🇪🇸|
|n|SIA-CEC CERT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - SOFISTIC-CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/sofistic-csirt-en]]|
|f|🇪🇸|
|n|SOFISTIC-CSIRT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Softeng - CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/softeng-csirt-en]]|
|f|🇪🇸|
|n|Softeng - CSIRT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Telefonica CSIRT]]>>/%
|7|Listed|
|aES|x|
|d|ES|
|f|🇪🇸|
|n|Telefonica CSIRT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - TIC DEFENSE CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/tic-defense-csirt]]|
|f|🇪🇸|
|n|TIC DEFENSE CSIRT|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - UCIBER - Mossos d'Esquadra]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/uciber-mossos-d-esquadra-en]]|
|f|🇪🇸|
|n|UCIBER - Mossos d'Esquadra|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ES - Versia-CSIRT]]>>/%
|aES|[[✔|https://www.csirt.es/index.php/en/miembros-en-menu/versia-en]]|
|f|🇪🇸|
|n|Versia-CSIRT|
|7|Accredited|
|d|ES|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - ES - Antonio Fernandes]]>>/%
|1|[[Liaison|https://www.first.org/members/liaisons/antonio_fernandes]]|
|d|ES|
|f|🇪🇸|
|n|Antonio Fernandes (ES) ((*(//ad personam//)))|
|u|[[⇗|https://www.fernandes.es/]]|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - ES - Borja Marcos]]>>/%
|1|[[Liaison|https://www.first.org/members/liaisons/borja_marcos]]|
|d|ES|
|f|🇪🇸|
|n|Borja Marcos (ES) ((*(//ad personam//)))|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - ES - Carlos Fragoso]]>>/%
|1|[[Liaison|https://www.first.org/members/liaisons/carlos_fragoso]]|
|d|ES|
|f|🇪🇸|
|n|Carlos Fragoso (ES) ((*(//ad personam//)))|
|p|0x864835B3|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - ES - Javier Berciano]]>>/%
|1|[[Liaison|https://www.first.org/members/liaisons/javier_berciano]]|
|d|ES|
|f|🇪🇸|
|n|Javier Berciano (ES) ((*(//ad personam//)))|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - ES - Mara M. Fernández Bermúdez]]>>/%
|1|[[Liaison|https://www.first.org/members/liaisons/mara_m-fernandez_bermudez]]|
|d|ES|
|f|🇪🇸|
|n|Mara M. Fernández Bermúdez (ES) ((*(//ad personam//)))|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - ES - Francisco Monserrat]]>>/%
|1|[[Liaison|https://www.first.org/members/liaisons/paco]]|
|d|ES|
|f|🇪🇸|
|n|Francisco Monserrat (ES) ((*(//ad personam//)))|
|p|0x51DCBDAE|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - ES - Rafael López Martínez]]>>/%
|1|[[Liaison|https://www.first.org/members/liaisons/rafa_lopez]]|
|d|ES|
|f|🇪🇸|
|n|Rafael López Martínez (ES) ((*(//ad personam//)))|
|u|[[⇗|https://www.linkedin.com/in/rafa-lopez-8a978022/]]|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - FI - NCSC-FI]]>>/%
|1|x|
|75|✔|
|76|✔|
|m|+++[🖂] cert[@]ncsc.fi === |
|f|🇫🇮|
|g|✔|
|n|NCSC-FI|
|old|[[⇗|https://www.kyberturvallisuuskeskus.fi/en/our-activities/cert]]|
|p|[[0xDA86DE17|https://www.kyberturvallisuuskeskus.fi/en/our-activities/cert]]|
|rfc|[[⇘|https://www.kyberturvallisuuskeskus.fi/en/our-activities/cert/rfc-2350]]|
|r|[[⇘|https://www.kyberturvallisuuskeskus.fi/fi/toimintamme/cert/rfc-2350]]|
|RSS|https://www.kyberturvallisuuskeskus.fi/feed/rss/fi/399|
|sCI|✔|
|sGO|✔|
|sNA|✔|
|t|+++[🕾] +358 295 345 630]]|
|7|[[Certified|https://trusted-introducer.org/directory/teams/ncsc-fi.html]] ^^2014^^|
|d|FI|
|y|Institutionnel|
|u|[[⇗|https://www.ncsc.fi/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - GR - GR-CSIRT]]>>/%
|n|GR-CSIRT|
|d|GR|
|f|🇬🇷|
|z|eu|
|u|[[⇗|https://csirt.cd.mil.gr]]|
|m|+++[🖂] csirt[@]cd.mil.gr === |
|g|✔|
|y|Institutionnel|
|1|x|
|75|✔|
|sGO|✔|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - GR - NCERT-GR]]>>/%
|d|GR|
|f|🇬🇷|
|o|Greek National Authority Against Electronic Attacks|
|n|NCERT-GR|
|z|eu|
|u|[[⇗|https://nis.gr]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|[[Listed|https://trusted-introducer.org/directory/teams/ncert-gr.html]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - HR - CERT.hr]]>>/%
|d|HR|
|f|🇭🇷|
|n|CERT.hr ((*(Croatian National CERT)))|
|z|eu|
|u|[[⇗|https://cert.hr]]|
|m|+++[🖂] ncert[@]cert.hr === |
|sNA|✔|
|sED|✔|
|g|✔|
|y|Institutionnel|
|1|✔|
|75|✔|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - HR - CERT ZSIS]]>>/%
|n|CERT ZSIS|
|d|HR|
|f|🇭🇷|
|z|eu|
|u|[[⇗|https://www.zsis.hr]]|
|m|+++[🖂] cert[@]zsis.hr === |
|75|✔|
|sGO|✔|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - HU - NCSC Hungary]]>>/%
|n|NCSC Hungary|
|d|HU|
|f|🇭🇺|
|z|eu|
|u|[[⇗|https://nki.gov.hu]]|
|m|+++[🖂] cert[@]govcert.hu === |
|g|✔|
|y|Institutionnel|
|1|x|
|75|✔|
|sCI|✔|
|sEN|✔|
|sGO|✔|
|sIS|✔|
|sNA|✔|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - IE - CSIRT-IE]]>>/%
|n|CSIRT-IE|
|d|IE|
|f|🇮🇪|
|z|eu|
|u|[[⇗|https://www.ncsc.gov.ie]]|
|m|+++[🖂] certreport[@]dccae.gov.ie === |
|g|✔|
|y|Institutionnel|
|1|x|
|75|✔|
|sGO|✔|
|sNA|✔|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - IS - CERT-IS]]>>/%
|1|[[✔|https://first.org/members/teams/cert-is]]|
|c|2013|
|f|🇮🇸|
|h|
|m|+++[🖂] cert[@]cert[.]is === |
|g|✔|
|n|CERT-IS ((*(Computer Incident Response Team Iceland)))|
|t|+++[🕾] +354 5101540 === |
|7|x|
|d|IS|
|y|Institutionnel|
|u|[[⇗|https://cert.is]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - IT - CERT-PA]]>>/%
|d|IT|_|_|
|f|🇮🇹|
|n|CERT-PA ((*(CERT Publica Amministrazione IT)))|
|z|eu|
|u|[[⇗|https://cert-pa.it]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - IT - CERT-Yoroi]]>>/%
|1|[[✔|https://www.first.org/members/teams/cert-yoroi]]|
|c|2005||m|+++[🖂] cert[@]yoroi[.]company === |
|f|🇮🇹|
|n|CERT-Yoroi|
|p|0xF869A5ED|
|t|+++[🕾] +39 0510 301005 === |
|7|[[Certified|https://trusted-introducer.org/directory/teams/cert-yoroi.html]] ^^2020^^|
|d|IT|_|_|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - IT - CSIRT.it]]>>/%
|n|CSIRT.it|
|d|IT|_|_|
|f|🇮🇹|
|z|eu|
|u|[[⇗|https://csirt.gov.it]]|
|m|+++[🖂] team[@]csirt[.]gov[.]it === |
|t|+++[🕾] +39 06 4213 88895 === |
|h|+++[☎] +39 06 4213 88895 === |
|1|[[✔|https://first.org/members/teams/csirt-it]]|
|75|✔|
|sGO|✔|
|sNA|✔|
|c|2018|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - IT - ESACERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/esacert]]|
|c|2003|
|m|+++[🖂] esacert[@]esa[.]int === |
|f|🇮🇹|
|h|+++[☎] +39 347 5239299 === |
|g|✔|
|n|ESACERT|
|o|ESA ((*(European Space Agency)))|
|r|[[⇗|https://esamultimedia.esa.int/docs/IT/ESACERT_RFC2350.pdf]]|
|t|+++[🕾] +39 06 94 188 237 === |
|d|IT|_|_|
|y|Institutionnel|
|7|[[Certified|https://trusted-introducer.org/directory/teams/esacert.html]] ^^2021^^|
|u|[[⇗|]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - IT - IT-CERT]]>>/%
|d|IT|_|_|
|f|🇮🇹|
|n|IT-CERT ((*(CERT Nazionale Italia)))|
|z|eu|
|u|[[⇗|https://mise.gov.it]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - JE - JCSC]]>>/%
|d|JE|
|f|🇯🇪|
|n|JCSC ((*(Jersey Cyber Security Centre)))|
|o|Government of Jersey]]|
|z|eu|
|u|[[⇗|https://cert.je/]]|
|t|+++[🕾] +44 1534 500050 === |
|g|✔|
|y|Institutionnel|
|1|x|
|7|x|
|c|2021|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LI - Stabsstelle Cyber-Sicherheit]]>>/%
|d|LI|
|f|🇱🇮|
|n|Stabsstelle Cyber-Sicherheit|
|z|eu|
|u|[[⇗|https://switch.ch]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LT - CERT-LT]]>>/%
|1|x|
|75|✔|
|d|LT|
|f|🇱🇹|
|g|✔|
|m|+++[🖂] cert[@]cert[.]lt === |
|n|CERT-LT|
|o|Ministry of Defense of Lithuania]]
|sNA|✔|
|u|[[⇗|https://www.nksc.lt]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LU - DBG-CERT]]>>/%
|1|x|
|aLU|✔|
|7|x|
|c|?|
|d|LU/DE|
|f|🇱🇺 / 🇩🇪|
|g|-|
|n|DBG-CERT|
|o|Clearstream|
|p|-|
|r|-|
|y|Commercial|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LU - EC DIGIT CSIRC]]>>/%
|o|Commission Européenne|
|d|LU|
|f|🇱🇺|
|n|EC DIGIT CSIRC|
|z|eu|
|m|+++[🖂] EC-DIGIT-CSIRC[@]ec[.]europa[.]eu === |
|t|+++[🕾] +352 43 01 32601 === |
|y|Institutionnel|
|g|-|
|aLU|✔|
|7|x|
|1|x|
|c|?|
|r|[[⇗|https://raw.githubusercontent.com/EC-DIGIT-CSIRC/RFC2350/master/rfc2350_1.03_signed.txt]]|
|p|0xCF2442A2|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LU - CSIRT Hacknowledge]]>>/%
|o|Hacknowledge Lux SA ((*(Swiss Post)))|
|d|LU|
|f|🇱🇺|
|n|CSIRT Hacknowledge|
|u|[[⇗|https://hacknowledge.com/services/incident-response/]]|
|z|eu|
|y|Commercial|
|g|-|
|aLU|✔|
|7|-|
|1|x|
|c|?|
|r|[[⇘|https://hacknowledge.com/CSIRT_HACKNOWLEDGE_SERVICE-DESCRIPTION_RFC-2350_v3.pdf]]|
|p|[[0x2C7AAA59|https://hacknowledge.com/CSIRT-Hacknowledge-(2C7AAA59)%E2%80%93Public.asc]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LU - CERT-XLM]]>>/%
|o|Excellium Group/Groupe Thales|
|d|LU|
|f|🇱🇺|
|n|CERT-XLM ((*(Excellium Services CSIRT)))|
|z|eu|
|t|+++[🕾] +352 262 039 64 708 === |
|h|+++[☎] +352 262 039 64 707 === |
|m|+++[🖂] cert[@]excellium-services[.]com === |
|u|[[⇗|https://www.excellium-services.com/services/cert-xlm/]]|
|y|Commercial|
|g|-|
|aLU|✔|
|1|[[✔|https://first.org/members/teams/cert-xlm]]|
|7|[[Certified|https://trusted-introducer.org/directory/teams/cert-xlm.html]] ^^2016^^|
|c|2014|
|r|@@color:#E1000F;''X''@@|
|p|0xD74E5AC0|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LU - CIRCL]]>>/%
|o|SMILE ((*(security made in Letzebuerg g.i.e.)))|
|n|CIRCL|
|d|LU|
|f|🇱🇺|
|z|eu|
|u|[[⇗|https://www.circl.lu]]|
|c|2008|
|t|+++[🕾] +352.247.88.444 === |
|h|+++[☎] +352.247.88.444 === |
|m|+++[🖂] info[@]circl[.]lu === |
|y|Public|
|g|✔|
|y|Institutionnel|
|aLU|✔|
|1|[[✔|https://first.org/members/teams/circl]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/circl.html]]|
|75|✔|
|sPP|✔|
|r|[[⇗|https://www.circl.lu/mission/rfc2350/]]|
|p|[[0x22BD4CD5|http://pgp.circl.lu/pks/lookup?op=get&search=0xEAADCFFC22BD4CD5]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LU - CSIRT POST CyberForce]]>>/%
|o|POST Luxembourg / DEEP|
|d|LU|
|f|🇱🇺|
|n|CSIRT POST CyberForce ((*(CSIRT-POST.lu / CSIRT de DEEP)))|
|z|eu|
|m|+++[🖂] csirt[@]post[.]lu === |
|t|+++[🕾] +352.2424.7999 === |
|h|+++[☎] +352.2424.4000 === |
|y|Commercial|
|g|-|
|aLU|✔|
|7|[[Listed|https://trusted-introducer.org/directory/teams/csirt-postlu.html]]|
|1|x|
|c|2020|
|r|-|
|p|0x1C94BB50|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LU - GOVCERT.LU]]>>/%
|o|Haut-Commissariat à la Protection Nationale ((*(HCPN)))|
|n|GOVCERT.LU|
|d|LU|
|f|🇱🇺|
|z|eu|
|u|[[⇗|https://www.govcert.lu]]|
|t|+++[🕾] +35224788966 === |
|h|+++[☎] +35224788960 === |
|m|+++[🖂] info[@]govcert[.]etat[.]lu === |
|g|✔|
|y|Public|
|aLU|✔|
|1|[[✔|https://first.org/members/teams/govcert-lu]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/govcertlu.html]]|
|75|✔|
|sCI|✔|
|sGO|✔|
|sLE|✔|
|sMI|✔|
|sNA|✔|
|c|2011|
|r|[[⇘|https://www.govcert.lu/docs/POL202_RFC2350_%28Public%29_9.0.pdf]]|
|p|0x87C0EC7D|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LU - HealthNet-CSIRT]]>>/%
|o|Agence eSante|
|d|LU|
|f|🇱🇺|
|n|HealthNet-CSIRT|
|z|eu|
|y|Public / Institutionnel|
|aLU|✔|
|g|-|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/healthnet-csirt.html]]|
|1|x|
|c|2014|
|r|@@color:#E1000F;''X''@@|
|p|@@color:#E1000F;''X''@@|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LU - Malware.LU]]>>/%
|o|iTrust Consulting|
|d|LU|
|f|🇱🇺|
|n|Malware.lu CERT|
|z|eu|
|u|[[⇗|https://malware.lu/about/cert.html]]|
|t|+++[🕾] +352.26.176.212 === |
|m|+++[🖂] cert[@]malware[.]lu === |
|y|Commercial|
|g|x|
|aLU|✔|
|1|x|
|7|x|
|c|2013|
|r|[[⇘|https://malware.lu/assets/files/cert/S7A_C002_CSIRT%20service%20presentation_v1.2.pdf]]|
|p|[[0xC8F71EEB|https://malware.lu/assets/files/pgp/Malware.lu%20CERT%20(Computer%20Emergency%20Response%20Team)(C8F71EEB)pub.asc]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LU - NCERT.LU]]>>/%
|d|LU|
|f|🇱🇺|
|n|NCERT.LU ((*(National CERT of Luxembourg)))|
|z|eu|
|u|[[⇗|https://ncert.lu]]|
|g|✔|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LU - PwC CSIRT]]>>/%
|o|PwC|
|d|LU|
|f|🇱🇺|
|n|PwC CSIRT|
|z|eu|
|y|Commercial|
|g|-|
|aLU|✔|
|7|x|
|1|x|
|c|?|
|r|-|
|p|-|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LU - RESTENA-CSIRT]]>>/%
|o|Fondation Restena|
|d|LU|
|f|🇱🇺|
|n|RESTENA-CSIRT|
|z|eu|
|u|[[⇗|https://www.restena.lu/csirt/]]|
|t|+++[🕾] +352.42.44091 === |
|m|+++[🖂] csirt[@]restena[.]lu === |
|y|Public / Institutionnel|
|g|-|
|aLU|✔|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/restena-csirt.html]]|
|1|x|
|r|[[⇘|https://www.restena.lu/files/inline-images/POL-CSIRT-RFC2350-V20.pdf]]|
|p|0x869540B2|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LU - Telindus-CSIRT]]>>/%
|1|x|
|aLU|✔|
|c|2015|
|m|+++[🖂] csirt[@]telindus[.]lu === |
|f|🇱🇺|
|g|-|
|n|Telindus-CSIRT|
|o|Telindus|
|p|[[0x6E2EA9F8|https://www.telindus.lu/sites/default/files/2024-02/Telindus-CSIRT-public_key.asc]]|
|r|[[⇘|https://www.telindus.lu/sites/default/files/2023-12/telindus-csirt_rfc2350.pdf]]|
|t|+++[🕾] +352.450.915.1 === |
|7|[[Accredited|https://trusted-introducer.org/directory/teams/telindus-csirt.html]]|
|d|LU|
|y|Commercial|
|u|[[⇗|https://www.telindus.lu/en/telindus-csirt]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - LV - CERT.LV]]>>/%
|1|[[✔|https://first.org/members/teams/cert-lv]]|
|75|✔|
|m|+++[🖂] cert[@]cert[.]lv === |
|f|🇱🇻|
|g|✔|
|n|CERT.LV|
|sGO|✔|
|sNA|✔|
|7|[[Certified|https://trusted-introducer.org/directory/teams/certlv.html]] ^^2023^^|
|d|LV|
|y|Institutionnel|
|u|[[⇗|https://www.cert.lv]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - MC - Agence Monégasque de Sécurité Numérique]]>>/%
|o|Agence Monégasque de Sécurité Numérique ((*(AMSN)))|
|d|MC|
|f|🇲🇨|
|z|eu|
|n|CERT-MC|
|u|[[⇗|https://amsn.gouv.mc/CERT-MC/]]|
|t|+++[🕾] +377 9898 9666 === |
|y|Institutionnel|
|g|✔|
|y|Institutionnel|
|1|[[✔|https://first.org/members/teams/cert-mc]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-mc-mc.html]]|
|c|2015|
|r|[[⇘|https://amsn.gouv.mc/var/amsn/storage/original/application/888b4f296b9ba46bcc7ba5abe2acd0cc.pdf]]|
|p|[[0xA1BE64F8|https://amsn.gouv.mc/var/amsn/storage/original/text/317dff3287336181ae38b010a1be64f8.asc]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - MC - Monaco Cyber Sécurité]]>>/%
|o|Monaco Cyber Sécurité|
|d|MC|
|f|🇲🇨|
|z|eu|
|n|CERT-MCS|
|u|[[⇗|https://www.monacocyber.mc]]|
|t|-|
|y|Commercial|
|7|[[Listed|https://trusted-introducer.org/directory/teams/cert-mcs-mc.html]]|
|1|x|
|c|2023|
|r|@@color:#E1000F;''X''@@|
|p|0xE44925DB|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - MD - CERT-GOV-MD]]>>/%
|d|MD|
|f|🇲🇩|
|n|CERT-GOV-MD ((*(Cyber Security Center CERT-GOV-MD)))|
|z|eu|
|u|[[⇗|https://stisc.gov.md]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - ME - CIRT.ME]]>>/%
|1|✔|
|7|x|
|d|ME|
|f|🇲🇪|
|g|✔|
|n|CIRT.ME ((*(National Montenegrin Computer Incident Response Team)))|
|u|[[⇗|https://www.cirt.me/]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - MK - MKD-CIRT]]>>/%
|d|MK|
|f|🇲🇰|
|n|MKD-CIRT ((*(National Centre for Computer Incident Response)))|
|z|eu|
|u|[[⇗|https://mkd-cirt.mk]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - MT - CSIRT Malta]]>>/%
|n|CSIRT Malta|
|d|MT|
|f|🇲🇹|
|z|eu|
|u|[[⇗|https://maltacip.gov.mt]]|
|m|+++[🖂] csirtmalta[@]gov[.]mt === |
|g|✔|
|y|Institutionnel|
|1|x|
|75|✔|
|sNA|✔|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - AAB-GCIRT]]>>/%
|1|x|
|aNL|✔|
|c|2012|
|m|+++[🖂] soc[@]nl[.]abnamro[.]com === |
|f|🇳🇱|
|h|-|
|g|-|
|n|AAB-GCIRT|
|o|ABNAMRO bank N.V.|
|p|-|
|k|Financiële dienstverlener|
|sNA|✔|
|t|-|
|7|-|
|d|NL|
|u|[[⇗|https://www.abnamro.com/nl/index.html]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - AMC-CERT]]>>/%
|c|~~2020~~|
|f|🇳🇱|
|n|AMC-CERT|
|7|[[Listed|https://trusted-introducer.org/directory/teams/amc-cert.html]]|
|d|NL|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - ASML CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/asml_csirt]]|
|aNL|x|
|c|2020|
|m|+++[🖂] information[.]security[@]asml[.]com === |
|f|🇳🇱|
|h|+++[☎] +31.40.268.3000 === |
|g|-|
|n|ASML CSIRT|
|o|ASML|
|p|-|
|t|+++[🕾] +31.40.268.3000 === |
|7|[[Re-Listing|https://trusted-introducer.org/directory/teams/asml-csirt.html]] ((*(en cours)))|
|d|NL|
|u|[[⇗|https://www.asml.com]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - CERT-UU]]>>/%
|c|~~2022~~|
|f|🇳🇱|
|n|CERT-UU|
|7|[[Listed|https://trusted-introducer.org/directory/teams/cert-uu-nl.html]]|
|d|NL|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - CERT-UvA]]>>/%
|1|x|
|7|[[Listed|https://trusted-introducer.org/directory/teams/cert-uva.html]]|
|c|?|
|d|NL|
|f|🇳🇱|
|n|CERT-UvA|
|o|Universiteit van Amsterdam / Hogeschool van Amsterdam|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - CERT-WM]]>>/%
|c|~~2021~~|
|f|🇳🇱|
|n|CERT-WM|
|7|[[Listed|https://trusted-introducer.org/directory/teams/cert-wm.html]]|
|d|NL|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - CSIRT-DSP]]>>/%
|aNL|✔|
|75|✔|
|m|+++[🖂] csirt[@]csirtdsp[.]nl === |
|f|🇳🇱|
|n|CSIRT-DSP|
|o|Ministerie van Economische zaken en Klimaat|
|sNA|✔|
|d|NL|
|u|[[⇗|https://www.csirtdsp.nl]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - Computest-CERT]]>>/%
|1|x|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/computest-cert-nl.html]]|
|c|2020|
|d|NL|
|f|🇳🇱|
|n|Computest-CERT|
|o|Computest Services B.V.|
|p|0x9298234E|
|y|Commercial|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - CSIRT.GLOBAL]]>>/%
|1|x|
|aNL|x|
|c|2022|
|m|-|
|f|🇳🇱|
|h|-|
|l|[[⇗|https://www.linkedin.com/company/csirt-global/]]|
|L|[[⇗|https://www.linkedin.com/company/csirt-global/posts/?feedView=all]]|
|g|-|
|n|CSIRT.GLOBAL|
|o|DIVD ((*(Dutch Institute for Vulnerability Disclosure)))|
|p|-|
|t|-|
|7|x|
|d|NL|
|u|[[⇗|https://csirt.global/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - DefCERT]]>>/%
|1|[[✔|https://first.org/members/teams/defcert]]|
|aNL|x|
|c|?|
|m|-|
|f|🇳🇱|
|h|-|
|g|-|
|n|DefCERT ((*(Defensie Computer Emergency Response Team)))|
|o|Ministère de la Défense|
|p|-|
|t|-|
|7|-|
|d|NL|
|u|-|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - eduGAIN CSIRT]]>>/%
|c|~~2024~~|
|f|🇳🇱|
|n|eduGAIN CSIRT|
|7|[[Listed|https://trusted-introducer.org/directory/teams/edugain-csirt-nl.html]]|
|d|NL|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - EGI CSIRT]]>>/%
|1|x|
|c|2010|
|m|+++[🖂] abuse[@]egi[.]eu ===|
|f|🇳🇱|
|h|+++[☎] +31.630.372.534 === |
|n|EGI CSIRT|
|o|European Grid Infrastructure|
|p|0x5696 F750|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +31.20.8932007 === |
|7|Certified^^2014^^|
|d|FR|
|y|Interne|
|u|[[⇗|https://www.france-grilles.fr/presentation/securite-france-grilles/]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - FoxCERT]]>>/%
|7|[[Accredited|https://trusted-introducer.org/directory/teams/foxcert.html]]|
|c|2012|
|d|NL|
|f|🇳🇱|
|h|+++[☎] +31 800 3692378 === |
|m|+++[🖂] cert[@]fox-it[.]com === |
|t|+++[🕾] +31 15 2847999 === |
|n|FoxCERT|
|o|Fox-IT|
|y|Commercial
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - IBD]]>>/%
|1||
|aNL||
|c||
|m||
|f|🇳🇱|
|h||
|g||
|n|IBD|
|o||
|p|-|
|sNA|✔|
|t||
|7|[[Certification|https://trusted-introducer.org/directory/teams/ibd.html]] ((*(en cours)))||
|d|NL|
|u||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - ING SDC]]>>/%
|1|[[✔|https://first.org/members/teams/ing_sdc]]|
|aNL|x|
|c|?|
|m||
|f|🇳🇱|
|h|-|
|g|-|
|n|ING SDC ((*(Security Defence Centre)))|
|o|ING|
|p|-|
|t|-|
|7|-|
|d|NL|
|u|-|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - KPN-CERT]]>>/%
|1|[[✔|https://first.org/members/teams/kpn-cert]]|
|aNL|✔|
|c|~~2010~~|
|m|+++[🖂] cert[@]kpn-cert[.]nl === |
|f|🇳🇱|
|h||
|g||
|n|KPN-CERT|
|o|Koninklijke KPN N.V.|
|p|[[0xA8AC9FE0|https://www.kpn.com/kpn-cert/pgp-key.htm]]|
|k|KPN en haar klanten|
|sNA|✔|
|t||
|7|[[Certified|https://trusted-introducer.org/directory/teams/kpn-cert.html]]|
|d|NL|
|u|[[⇗|https://www.kpn.com/kpn-cert.htm]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - NCSC-NL]]>>/%
|1|[[✔|https://first.org/members/teams/ncsc-nl]]|
|aNL|✔|
|c|2002|
|75|✔|
|76|✔|
|m|+++[🖂] cert[@]ncsc[.]nl === |
|f|🇳🇱|
|h|+++[☎] +31 70 7515555 === |
|g|✔|
|n|NCSC-NL ((*(National Cyber Security Centre of The Netherlands)))|
|o|Ministerie van Justitie en Veiligheid|
|p|0x3F662B80|
|k|Nederlandse overheid en vitale organisaties|
|sNA|✔|
|t|+++[🕾] +31 70 7515555 === |
|7|[[Certified|https://trusted-introducer.org/directory/teams/ncsc-nl.html]]|
|d|NL|
|y|Institutionnel|
|u|[[⇗|https://www.ncsc.nl]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - Nikhef CSIRT]]>>/%
|c|~~2021~~|
|f|🇳🇱|
|n|Nikhef CSIRT|
|7|[[Listed|https://trusted-introducer.org/directory/teams/nikhef-csirt.html]]|
|d|NL|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - Northwave CERT]]>>/%
|7|[[Accredited|https://trusted-introducer.org/directory/teams/nw-cert.html]]|
|c|2012|
|d|NL|
|f|🇳🇱|
|n|Northwave CERT ((*(NW-CERT)))|
|o|Northwave Investigation B.V.|
|p|0xC3F272D7|
|y|Commercial|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - PGGM-CERT]]>>/%
|c|2017|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/pggm-cert.html]]|
|d|NL|
|f|🇳🇱|
|n|PGGM-CERT|
|o|PGGM N.V.|
|p|0x15130EB4|
|k|Fin_|
|y|Interne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - RABOBANK CDC]]>>/%
|1|[[✔|https://first.org/members/teams/rabobank_cdc]]|
|aNL|x|
|c|~~2009~~|
|m||
|f|🇳🇱|
|h|-|
|g|-|
|n|RABOBANK CDC ((*(Rabobank Cyber Defense Centre)))|
|o|RABOBANK|
|p|-|
|t|-|
|7|-|
|d|NL|
|u||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - RIPE NCC CSIRT]]>>/%
|c|2013|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/ripe-ncc-csirt.html]]|
|d|NL|
|f|🇳🇱|
|h|+++[☎] +31 652 826 819 === |
|m|+++[🖂] security[@]ripe[.]net === |
|p|0x8FC0C8DB|
|t|+++[🕾] +31 652 826 819 === |
|n|RIPE NCC CSIRT|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - SIDN CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/sidn_csirt]]|
|aNL|x|
|c|?|
|m||
|f|🇳🇱|
|h|-|
|g|-|
|n|SIDN CSIRT|
|o||
|p|-|
|t|-|
|7|-|
|d|NL|
|u||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - SOC-BD]]>>/%
|1|[[✔|https://first.org/members/teams/soc-bd]]|
|aNL|x|
|c|?|
|m||
|f|🇳🇱|
|h|-|
|g|-|
|n|SOC-BD|
|o|Dutch Tax and Customs Administration SOC|
|p|-|
|t|-|
|7|-|
|d|NL|
|u||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - SURFcert]]>>/%
|1|[[✔|https://first.org/members/teams/surfcert]]|
|aNL|✔|
|c||
|m|+++[🖂] cert[@]surfnet[.]nl === |
|f|🇳🇱|
|h||
|g||
|n|SURFcert|
|o|Organisatie SURFnet bv|
|p|[[0x6CEC99BC|https://keys.openpgp.org/search?q=cert@surfcert.nl]]|
|k|Alle sites gelinkt aan SURFnet|
|sNA|✔|
|t|+++[🕾] +31.6.22923564 === |
|h|+++[☎] +31.6.22923564 === |
|7|[[Certified|https://trusted-introducer.org/directory/teams/surfcert.html]]|
|d|NL|
|u|[[⇗|https://www.surf.nl/surfcert-247-ondersteuning-bij-beveiligingsincidenten]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - T-CERT]]>>/%
|c|~~2023~~|
|f|🇳🇱|
|n|T-CERT|
|7|[[Listed|https://trusted-introducer.org/directory/teams/t-cert-nl.html]]|
|d|NL|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - UPC / Chello Security team]]>>/%
|1|x|
|aNL|✔|
|c|?|
|m|+++[🖂] security[@]libertyglobal[.]com === |
|f|🇳🇱|
|h|-|
|g|-|
|n|UPC / Chello Security team|
|o|UPC Broadband N.V.|
|p|-|
|sNA|✔|
|t|-|
|7|-|
|d|NL|
|u|[[⇗|https://www.ziggo.nl/klantenservice/internet/e-mail/ziggo-mail]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NL - Z-CERT]]>>/%
|1|[[✔|https://first.org/members/teams/z-cert]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/z-cert-nl.html]]|
|aNL|x|
|c|2016|
|d|NL|
|f|🇳🇱|
|g|-|
|h|x|
|l|[[⇗|https://nl.linkedin.com/company/z-cert]]|
|m|+++[🖂] info[@]z-cert[.]nl === |
|Twi|[[⇗|https://social.overheid.nl/@z_cert]]|
|n|Z-CERT ((*(Stichting Z-CERT)))|
|o|Stichting Z-CERT|
|p|[[0x7C4F8516|https://z-cert.nl/pgp-key-z-cert.asc]]|
|r|[[⇘|https://z-cert.nl/rfc2350-z-cert]]|
|k|Santé|
|t|+++[🕾] +31 33 737 0609 === |
|Twi|[[⇗|https://twitter.com/zcertNL]]|
|u|https://z-cert.nl/|
|You|[[⇗|https://www.youtube.com/@zorgcert]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - NL - Arjen de Landgraaf]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/arjen_de_landgraaf]]|
|f|🇳🇱|
|n|Arjen de Landgraaf (NL) ((*(//ad personam//)))|
|o|Arjen de Landgraaf|
|d|NL|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - NL - Don Stikvoort]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/don_stikvoort]]|
|f|🇪🇺|
|n|Don Stikvoort (NL) ((*(//ad personam//)))|
|o|Don Stikvoort|
|7|[[Associate|https://www.trusted-introducer.org/processes/associates.html]]|
|d|NL|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - NL - Jeroen van der Ham]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/jeroen_van_der_ham]]|
|f|🇳🇱|
|n|Jeroen van der Ham (NL) ((*(//ad personam//)))|
|o|Jeroen van der Ham|
|d|NL|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - NL - Mark Koek]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/mark_koek]]|
|f|🇳🇱|
|n|Mark Koek (NL) ((*(//ad personam//)))|
|o|Mark Koek|
|d|NL|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - NL - Piotr Kijewski]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/piotr_kijewski]]|
|f|🇳🇱|
|n|Piotr Kijewski (NL) ((*(//ad personam//)))|
|o|Piotr Kijewski|
|d|NL|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - NL - Sergey Polzunov]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/sergey_polzunov]]|
|f|🇳🇱|
|n|Sergey Polzunov (NL) ((*(//ad personam//)))|
|o|Sergey Polzunov|
|d|NL|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - NL - Sven Gabriel]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/sven_gabriel]]|
|f|🇳🇱|
|n|Sven Gabriel (NL) ((*(//ad personam//)))|
|o|Sven Gabriel|
|d|NL|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - NL - Anonyme (NL) #1]]>>/%
|1||
|7|[[Associate|https://www.trusted-introducer.org/processes/associates.html]]|
|c|2014|
|d|NL|
|f|🇨🇭|
|MaJ|O4C|
|n|Anonyme (NL) #1|
|o|Anonyme (NL) ((*(A choisi de ne pas être mentionné publiquement)))|
|p|-|
|r||
|u||
|y|Personne|
|z|eu|
|num|r03r31|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NO - EkomCERT]]>>/%
|d|NO|
|f|🇳🇴|
|n|EkomCERT ((*(Nkom EkomCERT)))|
|z|eu|
|u|[[⇗|https://nkom.no]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NO - NCSC-NO]]>>/%
|1|x|
|76|✔|
|7|x|
|d|NO|
|f|🇳🇴|
|g|✔|
|n|NCSC-NO ((*(National Cyber Security Centre in Norway)))|
|u|[[⇗|https://ncsc.no]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NO - eduCSC-NO]]>>/%
|d|NO|
|f|🇳🇴|
|n|eduCSC-NO|
|z|eu|
|u||
|g|✔|
|1|x|
|7|Certified^^2014^^|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NO - KraftCERT]]>>/%
|d|NO|
|f|🇳🇴|
|n|KraftCERT|
|z|eu|
|u||
|g|✔|
|1|x|
|7|Certified^^2021^^|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - NO - UiO-CERT]]>>/%
|d|NO|
|f|🇳🇴|
|n|UiO-CERT|
|z|eu|
|u||
|g|✔|
|1|x|
|7|Certified^^2024^^|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - PL - CERT POLSKA]]>>/%
|1|x|
|75|✔|
|m|+++[🖂] cert[@]cert[.]pl === |
|f|🇵🇱|
|g|✔|
|n|CERT POLSKA|
|sED|✔|
|sNA|✔|
|d|PL|
|y|Institutionnel|
|7|[[Certified|https://trusted-introducer.org/directory/teams/cert-polska.html]] ^^2020^^|
|u|[[⇗|https://www.cert.pl]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - PL - CSIRT-GOV]]>>/%
|n|CSIRT-GOV|
|d|PL|
|f|🇵🇱|
|z|eu|
|u|[[⇗|https://csirt.gov.pl]]|
|m|+++[🖂] csirt[@]csirt[.]gov[.]pl === |
|g|✔|
|y|Institutionnel|
|1|x|
|75|✔|
|sGO|✔|
|sNA|✔|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - PL - CSIRT-GOV]]>>/%
|n|CSIRT-MON|
|d|PL|
|f|🇵🇱|
|z|eu|
|u|[[⇗|https://csirt-mon.wp.mil.pl]]|
|m|+++[🖂] csirt-mon[@]ron[.]mil[.]pl === |
|75|✔|
|sMI|✔|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - PL - CERT OPL]]>>/%
|n|CERT OPL |
|d|PL|
|7|[[Certified|http://www.trusted-introducer.org/directory/teams/cert-opl.html]] ^^2016^^|
|z|eu|
|c||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - PL - CERT PKO BP]]>>/%
|n|CERT PKO BP|
|d|PL|
|7|[[Certified|https://trusted-introducer.org/directory/teams/cert-pko-bp.html]] ^^2020^^|
|z|eu|
|c||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - PL - CERT PSE]]>>/%
|n|CERT PSE |
|d|PL|
|7|[[Certified|https://trusted-introducer.org/directory/teams/cert-pse.html]] ^^2022^^|
|z|eu|
|c||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - PL - GAZ-SYSTEM CERT]]>>/%
|n|GAZ-SYSTEM CERT |
|d|PL|
|7|[[Certified|https://trusted-introducer.org/directory/teams/gaz-system-cert.html]] ^^2021^^|
|z|eu|
|c||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - PL - PGE-CERT (PL)]]>>/%
|n|PGE-CERT (PL) |
|d|PL|
|7|[[Certified|https://trusted-introducer.org/directory/teams/pge-cert-pl.html]] ^^2022^^|
|z|eu|
|c||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - PT - CERT.PT]]>>/%
|1|[[✔|https://first.org/members/teams/cncs-cert-pt]]|
|c|2014|
|75|✔|
|m|+++[🖂] cert[@]cert[.]pt === |
|f|🇵🇹|
|h|+++[☎] +351 910599284 === |
|g|✔|
|n|CERT.PT|
|o|GNS ((*(Gabinete Nacional de Segurança)))|
|sGO|✔|
|sNA|✔|
|t|+++[🕾] +351 210497399 === |
|d|PT|
|y|Institutionnel|
|7|[[Certified|https://trusted-introducer.org/directory/teams/certpt.html]] ^^2022^^|
|u|[[⇗|https://www.cncs.gov.pt]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - PT - CIPHER-CSIRT]]>>/%
|n|CIPHER-CSIRT |
|d|PT|
|7|[[Certified|https://trusted-introducer.org/directory/teams/cipher-csirt.html]] ^^2019^^|
|z|eu|
|c||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - PT - RCTS CERT]]>>/%
|n|RCTS CERT |
|d|PT|
|7|[[Certified|https://trusted-introducer.org/directory/teams/rcts-cert.html]] ^^2015^^|
|z|eu|
|c||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - RO - CERT-RO]]>>/%
|n|CERT-RO|
|d|RO|
|f|🇷🇴|
|z|eu|
|u|[[⇗|https://www.cert.ro]]|
|m|+++[🖂] office[@]cert[.]ro === |
|g|✔|
|y|Institutionnel|
|1|x|
|75|✔|
|sGO|fx2713;|
|sNA|✔|
|sPP|✔|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - RS - GOVCERT.RS]]>>/%
|1|[[✔|https://www.first.org/members/teams/govcert-rs]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/govcert-rs-rs.html]]|
|c|2017|
|d|RS|
|f|🇷🇸|
|g|✔|
|h|+++[☎] +381 64 8552 347 === |
|m|+++[🖂] cert[@]gov[.]rs === |
|n|GOVCERT.RS ((*(OITeG CERT - Office for IT and eGovernment CERT)))|
|p|0x1B54747D|
|Rpt|[[⇗|https://www.ite.gov.rs/tekst/en/27/cert.php]]|
|r|[[⇘|https://www.ite.gov.rs/extfile/en/851/RFC2350eng_oktobar.docx]] [[⇘|https://www.ite.gov.rs/extfile/sr/6985/RFC2350_oktobar_.docx]]|
|t|+++[🕾] +381 11 7358 400 === |
|u|[[⇗|https://www.ite.gov.rs/tekst/sr/88/cert.php]] / [[⇗|https://www.ite.gov.rs/tekst/en/124/office-for-it-and-egovernment.php]]||
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - RS - MUP CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/mup_cert]]|]]|
|7|x|
|c|2015|
|d|RS|
|f|🇷🇸|
|g|✔|
|h|+++[☎] +381 64 8552 347 === |
|m|+++[🖂] cert[@]mup[.]gov[.]rs === |
|n|MUP CERT ((*(Centar za reagovanje na napade na informacioni sistem)))|
|o|Minitère de l'Intérieur|
|p|0x3818E7FA|
|t|+++[🕾] +381113617814 === |
|u|http://www.mup.gov.rs]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - RS - SRB-CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/srb-cert]]|
|7|x|
|c|2017|
|d|RS|
|f|🇷🇸|
|g|✔|
|h|+++[☎] +381 62 202030 === |
|m|+++[🖂] office[@]cert[.]rs === |
|n|SRB-CERT ((*(National CERT of the Republic of Serbia)))|
|p|0xDF4A1AA5|
|t|+++[🕾] +381 11 3242 673 === |
|u|[[⇗|https://cert.rs]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - BBN-SIRT]]>>/%
|7|[[Listed|https://trusted-introducer.org/directory/teams/bbn-sirt.html]]|
|d|SE|
|f|🇸🇪|
|n|BBN-SIRT |
|o||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - BF-SIRT]]>>/%
|7|[[Accredited|https://trusted-introducer.org/directory/teams/bf-sirt.html]]|
|d|SE|
|f|🇸🇪|
|n|BF-SIRT |
|o||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - CERT-SE]]>>/%
|1|[[✔|https://first.org/members/teams/cert-se]]|
|76|✔|
|75|✔|
|7|[[Certified|https://trusted-introducer.org/directory/teams/cert-se.html]] ^^2011^^|
|aSE|Membre|
|c|2011|
|d|SE|
|f|🇸🇪|
|g|✔|
|m|+++[🖂] cert[@]cert[.]se === |
|n|CERT-SE|
|o|MSB|
|sGO|✔|
|sNA|✔|
|u|[[⇗|https://www.cert.se]]|
|y|Institutionnel|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - Chalmers IRT]]>>/%
|7|[[Listed|https://trusted-introducer.org/directory/teams/chalmers-irt.html]]|
|d|SE|
|f|🇸🇪|
|n|Chalmers IRT |
|o||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - Cparta CERT]]>>/%
|1|[[✔|https://first.org/members/teams/cparta_cert]]|
|aSE|Membre|
|d|SE|
|f|🇸🇪|
|n|Cparta CERT|
|o|Cparta|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - Ericsson CERT]]>>/%
|aSE|Membre|
|d|SE|
|f|🇸🇪|
|n|Ericsson CERT|
|o|Ericsson|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - FM CERT]]>>/%
|1|[[✔|https://first.org/members/teams/fm_cert]]|
|aSE|Membre|
|d|SE|
|f|🇸🇪|
|n|FM CERT ((*(Swedish Armed Forces CERT)))|
|o|Swedish Armed Forces|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - Försvarsmakten CERT]]>>/%
|aSE|Membre|
|d|SE|
|f|🇸🇪|
|n|Försvarsmakten CERT|
|o|Försvarsmakten|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - GC-CSIRT (SE)]]>>/%
|7|[[Accredited|https://trusted-introducer.org/directory/teams/gc-csirt-se.html]]|
|d|SE|
|f|🇸🇪|
|n|GC-CSIRT (SE) |
|o||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - Handelsbanken SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/handelsbanken_sirt]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/handelsbanken-sirt.html]]|
|aSE|Membre|
|d|SE|
|f|🇸🇪|
|n|Handelsbanken SIRT ((*(Handelsbanken Security Incident Response Team)))|
|o|Handelsbanken|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - Kindred-CSIRT (SE)]]>>/%
|7|[[Accredited|https://trusted-introducer.org/directory/teams/kindred-csirt-se.html]]|
|d|SE|
|f|🇸🇪|
|n|Kindred-CSIRT (SE) |
|o||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - LiU IRT]]>>/%
|1|[[✔|https://first.org/members/teams/liu_irt]]|
|7|[[Certified|https://trusted-introducer.org/directory/teams/liu-irt.html]] ^^2014^^|
|aSE|Membre|
|c|2007|
|d|SE|
|f|🇸🇪|
|h|+++[☎] +46.13.281744 === |
|m|+++[🖂] infosec[@]liu[.]se === |
|n|LiU IRT ((*(Linkoping University Incident Response Team)))|
|o|Linkoping University ((*(Linköpings universitet)))|
|t|+++[🕾] +46.13.281744 === |
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - OneVinn MDR]]>>/%
|1|[[✔|https://first.org/members/teams/onevinn_mdr]]|
|aSE|Membre|
|d|SE|
|f|🇸🇪|
|n|OneVinn MDR|
|o|Onevinn|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - PM-CERT]]>>/%
|1|[[✔|https://first.org/members/teams/pm-cert]]|
|aSE|Membre|
|d|SE|
|f|🇸🇪|
|n|PM-CERT ((*(Swedish Police CERT)))|
|o|Swedish Police|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - RST CERT]]>>/%
|1|[[✔|https://first.org/members/teams/rst_cert]]|
|aSE|Membre|
|d|SE|
|f|🇸🇪|
|n|RST CERT ((*(Region Stockholm CERT)))|
|o|Region Stockholm|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - Sandvik CERT]]>>/%
|aSE|Membre|
|d|SE|
|f|🇸🇪|
|n|Sandvik CERT|
|o|Sandvik|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - SBAB-SIRT]]>>/%
|7|[[Accredited|https://trusted-introducer.org/directory/teams/sbab-sirt.html]]|
|aSE|Membre|
|c|2015|
|d|SE|
|f|🇸🇪|
|m|+++[🖂] sirt[@]sbab[.]se === |
|n|SBAB-SIRT|
|o|SBAB Bank AB|
|t|+++[🕾] +46 709 604 700 === |
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - SEB CERT]]>>/%
|1|x|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/seb-csirt.html]]|
|aSE|Membre|
|d|SE|
|f|🇸🇪|
|n|SEB CERT ((*(Skandinaviska Enskilda Banken CERT)))|
|o|Skandinaviska Enskilda Banken AB |
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - SentorSOC]]>>/%
|7|[[Listed|https://trusted-introducer.org/directory/teams/sentorsoc-se.html]]|
|d|SE|
|f|🇸🇪|
|n|SentorSOC |
|o||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - SKV-SOC]]>>/%
|7|[[Listed|https://trusted-introducer.org/directory/teams/skv-soc.html]]|
|d|SE|
|f|🇸🇪|
|n|SKV-SOC |
|o||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - SUNet CERT]]>>/%
|1|[[✔|https://first.org/members/teams/sunet_cert]]|
|aSE|Membre|
|c|2000|
|d|SE|
|f|🇸🇪|
|h|+++[☎] +46 8 20 78 60 ===|
|m|+++[🖂] cert[@]cert[.]sunet[.]se ===|
|n|SUNet CERT ((*(Swedish University Network Computer Emergency Response Team)))|
|o|Swedish University Network|
|p|0x3ACFD1F0|
|r|[[⇘|https://wiki.sunet.se/display/SUNETCERT/SUNET+CERT+RFC+2350+PROFILE]]|
|t|+++[🕾] +46 8 20 78 60 ===|
|u|[[⇗|https://www.cert.sunet.se/english/index.html]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - Swedbank CDC]]>>/%
|1|[[✔|https://first.org/members/teams/swedbank_cdc]]|
|7|[[Certified|https://trusted-introducer.org/directory/teams/swedbank-cdc.html]] ^^2023^^|
|aSE|Membre|
|c|2003|
|d|SE|
|f|🇸🇪|
|m|sirt[@]swedbank[.]com
|n|Swedbank CDC ((*(Swedbank Cyber Defence Center)))|
|o|Swedbank|
|p|0x5E6AA9D9|
|k|Finance|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - TeliaCERT]]>>/%
|1|[[✔|https://first.org/members/teams/teliacert]]|
|7|[[Certified|https://trusted-introducer.org/directory/teams/teliacert.html]] ^^2011^^|
|aSE|Membre|
|d|SE|
|f|🇸🇪|
|n|TeliaCERT|
|o|Telia|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - Truesec CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/truesec_csirt]]|
|7|[[Certified|https://trusted-introducer.org/directory/teams/truesec-csirt-se.html]] ^^2023^^|
|aSE|Membre|
|d|SE|
|f|🇸🇪|
|n|Truesec CSIRT|
|o|Truesec|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - UmU IRT]]>>/%
|7|[[Listed|https://trusted-introducer.org/directory/teams/umu-irt.html]]~~--Certified--~~|
|c|1998|
|d|SE|
|f|🇸🇪|
|n|UmU IRT ((*(Umea University IRT)))|
|o|Umea University|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - UU-CSIRT]]>>/%
|7|[[Accredited|https://trusted-introducer.org/directory/teams/uu-csirt.html]]|
|d|SE|
|f|🇸🇪|
|n|UU-CSIRT |
|o||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SE - XPD-SIRT]]>>/%
|7|[[Listed|https://trusted-introducer.org/directory/teams/xpd-sirt.html]]|
|d|SE|
|f|🇸🇪|
|n|XPD-SIRT |
|o||
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SI - SI-CERT]]>>/%
|n|SI-CERT|
|d|SI|
|f|🇸🇮|
|z|eu|
|u|[[⇗|https://www.cert.si]]|
|m|+++[🖂] cert[@]cert[.]si === |
|t|+++[🕾] +386 1 4798822 === |
|g|✔|
|y|Institutionnel|
|1|[[✔|https://first.org/members/teams/si-cert]]|
|75|✔|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/si-cert.html]]|
|sNA|✔|
|sED|✔|
|r|[[⇘|https://www.gov.si/assets/ministrstva/MDP/DI/Detailed_information_RFC_2350_-_SIGOVCERT.pdf]]|
|c|1995|
|p|0x7231E551|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SI - SIGOV-CERT]]>>/%
|n|SIGOV-CERT|
|d|SI|
|f|🇸🇮|
|z|eu|
|m|+++[🖂] cert[@]gov[.]si === |
|g|✔|
|y|Institutionnel|
|1|x|
|75|✔|
|7|[[Listed|https://trusted-introducer.org/directory/teams/sigov-cert.html]]|
|sGO|✔|
|r|[[⇘|https://www.gov.si/assets/ministrstva/MDP/DI/SIGOV-CERT_RFC_2350.pdf]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SK - CSIRT.SK]]>>/%
|n|CSIRT.SK|
|d|SK|
|f|🇸🇰|
|z|eu|
|u|[[⇗|https://www.csirt.gov.sk]]|
|m|+++[🖂] incident[@]csirt[.]gov[.]sk === |
|75|✔|
|sGO|✔|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SK - GOV CERT SK]]>>/%
|d|SK|
|f|🇸🇰|
|n|GOV CERT SK ((*(GOV CERT SK)))|
|z|eu|
|u|[[⇗|https://cert.gov.sk]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - SK - SK-CERT]]>>/%
|1|x|
|75|✔|
|m|+++[🖂] sk-cert[@]nbu[.]gov[.]sk === |
|f|🇸🇰|
|g|✔|
|n|SK-CERT|
|sCI|✔|
|sNA|✔|
|7|[[Certified|https://trusted-introducer.org/directory/teams/sk-cert.html]] ^^2020^^|
|d|SK|
|y|Institutionnel|
|u|[[⇗|https://www.sk-cert.sk]]|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - UA - CERT-UA]]>>/%
|1|[[✔|https://first.org/members/teams/cert-ua]]|
|d|UA|
|f|🇺🇦|
|n|CERT-UA ((*(Computer Emergency Response Team of Ukraine)))|
|z|eu|
|u|[[⇗|https://cert.gov.ua]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|x|
|z|eu|
%/
<<tiddler f_IdIRT with: [[Liaison - UA - Dmytro Korzhevin]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/dmytro_korzhevin]]|
|f|🇺🇦|
|n|Dmytro Korzhevin (UA) ((*(//ad personam//)))|
|o|Dmytro Korzhevin|
|d|UA|
|y|Personne|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - UK - GEANT CERT]]>>/%
|1|[[✔|https://www.first.org/members/teams/geant_cert]]|
|c|1999|
|m|+++[🖂] cert[@]oc[.]geant[.]net === |
|f|🇬🇧|
|h|+++[☎] +44 1223 733033 === |
|n|GEANT CERT|
|p|0x99833085|
|t|+++[🕾] +44 1223 733033 === |
|d|UK|
|7|[[Certified|https://trusted-introducer.org/directory/teams/geant-cert.html]] ^^2015^^|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - UK - NCSC UK]]>>/%
|d|UK|
|f|🇬🇧|
|n|NCSC UK|
|z|eu|
|u|[[⇗|https://www.ncsc.gov.uk/]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|76|✔|
|7|~~//(Accredited) ((*(Accreditation suspended)))//~~|
|z|eu|
%/
<<tiddler f_IdIRT with: [[CSIRT - XK - KOS-CERT]]>>/%
|d|XK|
|f|🇽🇰|
|n|KOS-CERT ((*(Kosovo National CERT)))|
|z|eu|
|u|[[⇗|https://kos-cert.org]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|x|
%/
!!Liste (non exhaustive) des ISACs en Europe
<<forEachTiddler where 'tiddler.tags.containsAny(["EU__I"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "| ^^Sources agrégées : [[EU-ISACs|https://www.isacs.eu/european-isacs]], [[ENISA|https://www.enisa.europa.eu/topics/national-cyber-security-strategies/information-sharing]], connaissances personnelles^^ |c\n|sortable|k\n|#|Nom|Secteur| Site | ^^Date de
création^^ | Divers |h\n| " : "\n| ")+(index+1)+"|[[" + tiddler.title.substr(12)+"|"+tiddler.title+"]] |\<\<tiddler [["+tiddler.title+"::k]]\>\> | \<\<tiddler [["+tiddler.title+"::u]]\>\> | \<\<tiddler [["+tiddler.title+"::c]]\>\> |\<\<tiddler [["+tiddler.title+"::j]]\>\> |"' begin '""' end '""' none '"////"'>>/%
/%
|MaJ|11.09.2024|
|y|ISAC|
|z|eu|
%/
<<tiddler f_IdIRT with: [[ISAC - EU - Agrifood ISAC]]>>/%
|c|?|
|d|EU|
|n|Agrifood ISAC|
|k|Alimentation|
|u|[[⇗|https://www.foodandag-isac.org/]]|
|y|ISAC|
|z|eu|
%/
<<tiddler f_IdIRT with: [[ISAC - EU - CIISI-EU]]>>/%
|c|2020|
|d|EU|
|n|CIISI-EU ((*(Cyber Information and Intelligence Sharing Initiative)))|
|k|Threat Intelligence|
|y|ISAC|
|z|eu|
%/
<<tiddler f_IdIRT with: [[ISAC - EU - EA-ISAC]]>>/%
|c|?|
|d|EU|
|j|European Aviation ISAC) |
|n|EA-ISAC ((*(European Aviation ISAC)))|
|k|Transport|
|u|-|
|y|ISAC|
|z|eu|
%/
<<tiddler f_IdIRT with: [[ISAC - EU - ECCSA]]>>/%
|c|?|
|d|EU|
|j|European Centre for Cybersecurity in Aviation|
|n|ECCSA ((*(European Centre for Cybersecurity in Aviation)))|
|k|Aviation|
|u|[[⇗|https://www.easa.europa.eu/eccsa]]|
|y|ISAC|
|z|eu|
%/
<<tiddler f_IdIRT with: [[ISAC - EU - EE-ISAC]]>>/%
|c|?|
|d|EU|
|n|EE-ISAC ((*(European Energy ISAC)))|
|k|Energie|
|u|[[⇗|https://www.ee-isac.eu/]]|
|y|ISAC|
|z|eu|
%/
<<tiddler f_IdIRT with: [[ISAC - EU - EM-ISAC]]>>/%
|c|?|
|d|EU|
|j|EU Maritime ISAC|
|n|EM-ISAC ((*(EU Maritime ISAC)))|
|k|Maritime|
|y|ISAC|
|z|eu|
%/
<<tiddler f_IdIRT with: [[ISAC - EU - ER-ISAC]]>>/%
|c|?|
|d|EU|
|j|European Rail ISAC|
|n|ER-ISAC ((*(European Rail ISAC)))|
|k|Transport Ferrovière|
|u|[[⇗|https://er.isacs.eu/]]|
|y|ISAC|
|z|eu|
%/
<<tiddler f_IdIRT with: [[ISAC - EU - European Health ISAC]]>>/%
|k|Santé|
|n|European Health ISAC|
|d|EU|
|c|?|
|y|ISAC|
|z|eu|
%/
<<tiddler f_IdIRT with: [[ISAC - EU - European TLD ISAC]]>>/%
|b|[[⇗|https://www.tld-isac.eu/blog/]]|
|c|2023|
|d|EU|
|l|[[⇗|https://www.linkedin.com/in/european-tld-isac-b66017241/]]|
|L|[[⇗|https://www.linkedin.com/in/european-tld-isac-b66017241/recent-activity/all/]]|
|m|+++[🖂] secretariat[@]tld-isac[.]eu === |
|n|European TLD ISAC ((*(European Top-Level Domains ISAC)))|
|k|Gestionnaires de domaines Internet|
|t|+++[🕾] +32 2.627.5550 === |
|u|[[⇗|https://www.tld-isac.eu/]]|
|y|ISAC|
|z|eu|
|j|Annonce : [[Afnic|https://www.afnic.fr/en/observatory-and-resources/news/launch-of-the-first-top-level-domain-isac/]]|
%/
!!Membres
|!Nom| Web | ccTLD |h
|Afnic| [[⇗|https://www.afnic.fr]] |.fr |
|CARNET| [[⇗|https://www.carnet.hr/en/]] |.hr |
|CENTR ((*(Council of European top-level domain registries)))| [[⇗|https://www.centr.org]] |! |
|Denic| [[⇗|https://www.denic.de]] |.de |
|DNS Belgium| [[⇗|https://www.dnsbelgium.be/fr]] |.be |
|EURid| [[⇗|https://www.eurid.eu]] |.eu |
|Internetstiftelsen| [[⇗|https://internetstiftelsen.se/]] |.se |
|Nic.at| [[⇗|https://www.nic.at]] |.at |
|Nominet| [[⇗|https://www.nominet.uk]] |.uk |
|.PT| [[⇗|https://www.pt.pt/en/]] |.pt |
|Punktum dk| [[⇗|https://punktum.dk/]] |.dk |
|Red.es| [[⇗|https://www.red.es]] |.es |
|Register.si| [[⇗|https://www.register.si]] |.si |
|SIDN| [[⇗|https://www.sidn.nl]] |.nl |
|SK-NIC| [[⇗|https://sk-nic.sk/en/home/]] |.sk |
|Switch| [[⇗|https://www.switch.ch]] |.ch |
<<tiddler f_IdIRT with: [[ISAC - EU - European Water ISAC]]>>/%
|c|2021|
|d|EU|
|k|Gestion de l'eau|
|n|@@color:#E1000F;European Water ISAC@@|
|k|Gestion de l'eau|
|u|@@color:#E1000F;x@@|
|y|ISAC|
|z|eu|
|j|@@color:#E1000F;Pas d'activité récente@@|
%/
<<tiddler f_IdIRT with: [[ISAC - EU - EuroSCSIE]]>>/%
|c|2005|
|d|EU|
|j|European SCADA and Control Systems Information Exchange|
|n|EA-ISAC ((*(European SCADA and Control Systems Information Exchange)))|
|k|Systèmes Industriels|
|y|ISAC|
|z|eu|
%/
<<tiddler f_IdIRT with: [[ISAC - ]EU - FI-ISAC]>>/%
|c|2008|
|d|EU|
|j|European Financial Institutes ISAC|
|n|FI-ISAC ((*(European Financial Institutes ISAC)))|
|k|Financier|
|u|[[⇗|https://www.fi-isac.eu/]]|
|y|ISAC|
|z|eu|
%/
<<tiddler f_IdIRT with: [[ISAC - EU - H-ISAC]]>>/%
|81|-|
|n|European Health ISAC|
|k|Santé / Pharmacie, Hopitaux, Cliniques privées|
|l|[[⇗|https://www.linkedin.com/company/health-isac/]]|
|L|[[⇗|https://www.linkedin.com/company/health-isac/posts/?feedView=all]]|
|o|Health|
|t|+++[🕾] +32 2 892.33.83 === |
|u|[[⇗|http://www.h-isac.org]]|
|d|US|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - EU - I4C+]]>>/%
|k|Collectivités Locales|
|n|I4C+ ((*(ISAC for Cities Plus)))|
|d|EU|
|y|ISAC|
|z|eu|
|u|[[⇗|https://isac4cities.eu/]]|
|c|?|
|y|ISAC|
|z|eu|
%/
<<tiddler f_IdIRT with: [[ISAC - EU - PISAX]]>>/%
|k|Opérateurs Internet|
|n|PISAX ((*(pan-European ISAC to IXPs and GRXs)))|
|d|EU|
|y|ISAC|
|z|eu|
|u|[[⇗|https://www.pisax.org/]]|
|c|?|
|j|+++[IXPs & GRXs]>... Internet Exchange Points (IXPs) and General Packet Radio Service Roaming eXchange (GRXs)=== |
|y|ISAC|
|z|eu|
%/
!!Liste (non exhaustive) des ISACs en Australie
<<forEachTiddler where 'tiddler.tags.containsAny(["AU__I"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "| ^^Sources agrégées : connaissances personnelles^^ |c\n|sortable|k\n|#|Nom|Secteur| Site | ^^Date de
création^^ | Divers |h\n| " : "\n| ")+(index+1)+"|[[" + tiddler.title.substr(12)+"|"+tiddler.title+"]] |\<\<tiddler [["+tiddler.title+"::k]]\>\> | \<\<tiddler [["+tiddler.title+"::u]]\>\> | \<\<tiddler [["+tiddler.title+"::c]]\>\> |\<\<tiddler [["+tiddler.title+"::j]]\>\> |"' begin '""' end '""' none '"////"'>>/%
/%
|MaJ|11.09.2024|
|y|ISAC|
|z|AU|
%/
<<tiddler f_IdIRT with: [[ISAC - AU - CI-ISAC Australia]]>>/%
|c|2022|
|d|AU|
|n|CI-ISAC Australia ((*(Collective Cyber Defence for Critical Infrastructure)))|
|o|Collective Cyber Defence for Critical Infrastructure|
|k|Infrastructures critiques|
|l|[[⇗|https://www.linkedin.com/company/ci-isac/]]|
|L|[[⇗|https://www.linkedin.com/company/ci-isac/posts/?feedView=all]]|
|m|+++[🖂] info[@]otisac[.]org === |
|t|+++[🕾] 1 300 556 210 === |
|u|[[⇗|https://www.otisac.org/]]|
|y|ISAC|
|z|AU|
|QtD|09.2024|%/
!!Liste (non exhaustive) des ISACs au Canada
<<forEachTiddler where 'tiddler.tags.containsAny(["82_"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "|sortable|k\n|#|Nom|Secteur| Site | ^^Date de
création^^ | Divers |h\n| " : "\n| ")+(index+1)+"|[[" + tiddler.title.substr(12)+"|"+tiddler.title+"]] |\<\<tiddler [["+tiddler.title+"::k]]\>\> | \<\<tiddler [["+tiddler.title+"::u]]\>\> | \<\<tiddler [["+tiddler.title+"::c]]\>\> |\<\<tiddler [["+tiddler.title+"::j]]\>\> |"' begin '""' end '""' none '"////"'>>/%
/%
|MaJ|11.09.2024|
|y|ISAC|
|z|CA|
%/
<<tiddler f_IdIRT with: [[ISAC - CA - MM-ISAC]]>>/%
|81|-|
|c|2017|
|d|CA|
|n|MM-ISAC ((*(Mining and Metals ISAC)))|
|o||
|k|Mines et métallurgie|
|l|[[⇗|https://www.linkedin.com/company/mmisac/]]|
|L|[[⇗|https://www.linkedin.com/company/mmisac/posts/?feedView=all]]|
|u|[[⇗|https://mmisac.org/]]|
|y|ISAC|
|z|CA|
|QtD|09.2024|%/
!!Liste (non exhaustive) des ISACs au Japon
<<forEachTiddler where 'tiddler.tags.containsAny(["JP__I"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "| ^^Sources agrégées : connaissances personnelles^^ |c\n|sortable|k\n|#|Nom|Secteur| Site | ^^Date de
création^^ | Divers |h\n| " : "\n| ")+(index+1)+"|[[" + tiddler.title.substr(12)+"|"+tiddler.title+"]] |\<\<tiddler [["+tiddler.title+"::k]]\>\> | \<\<tiddler [["+tiddler.title+"::u]]\>\> | \<\<tiddler [["+tiddler.title+"::c]]\>\> |\<\<tiddler [["+tiddler.title+"::j]]\>\> |"' begin '""' end '""' none '"////"'>>/%
/%
|MaJ|11.09.2024|
|y|ISAC|
|z|JP|
%/
<<tiddler f_IdIRT with: [[ISAC - JP - Financials ISAC]]>>/%
|c|2014|
|d|JP|
|n|Financials ISAC Japan ((*(般社団法人 金融ISAC)))|
|o|General Incorporated Association Financials ISAC Japan|
|k|Finance|
|m|+++[🖂] info[@]f-isac[.]jp === |
|t|+++[🕾] +81 03-6269-9521 === |
|u|[[⇗|https://www.f-isac.jp/index_e.html]]|
|y|ISAC|
|z|JP|
|QtM|434|
|QtD|09.2024|%/
<<tiddler f_IdIRT with: [[ISAC - JP - ICT-ISAC]]>>/%
|c|2000|
|d|JP|
|k|Gestion de l'Information / Informatique|
|n|Information and Communication Technology ISAC ((*(般社団法人 ICT-ISAC)))|
|o|Technologies de l'Information|
|u|[[⇗|https://www.ict-isac.jp/english/]]|
|y|ISAC|
|z|JP|
%/
<<tiddler f_IdIRT with: [[ISAC - JP - JE-ISAC]]>>/%
|c|2017|
|d|JP|
|n|JE-ISAC ((*(Japan Electricity ISAC)))|
|o|Japan Electricity ISAC|
|k|Energie/Electricité|
|u|[[⇗|https://www.ict-isac.jp/english/]]|
|y|ISAC|
|z|JP|
|Qte|58|
|QtD|07.2024|%/
<<tiddler f_IdIRT with: [[ISAC - JP - M-ISAC]]>>/%
|d|JP|
|n|M-ISAC ((*("医療ISAC - Medical ISAC Japan)))|
|k|Santé|
|u|[[⇗|https://m-isac.jp/]]|
|y|ISAC|
|z|JP|
|QtD|09.2024|%/
<<tiddler f_IdIRT with: [[ISAC - JP - Telecom-ISAC]]>>/%
|c|2002|
|d|JP|
|n|Telecom-ISAC|
|k|Télécommunications|
|u|[[⇗|https://www.telecom-isac.jp/english/]]|
|y|ISAC|
|z|JP|
|Qte|20|
|QtD|2016|
%/
<<tiddler f_IdIRT with: [[ISAC - JP - T-ISAC]]>>/%
|c|2020|
|d|JP|
|n|T-ISAC ((*(Transportation ISAC Japan - 交通ISAC )))|
|k|Transports / chemins de fer, aviation, aéroports et logistique|
|u|[[⇗|https://t-isac.or.jp/]]|
|y|ISAC|
|z|JP|
|QtD|09.2024|
%/
!!Liste (non exhaustive) des ISACs en Pays-Bas
<<forEachTiddler where 'tiddler.tags.containsAny(["NL__I"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "|\n|sortable|k\n|#|Nom|Secteur| Site | ^^Date de
création^^ | Divers |h\n| " : "\n| ")+(index+1)+"|[[" + tiddler.title.substr(12)+"|"+tiddler.title+"]] |\<\<tiddler [["+tiddler.title+"::k]]\>\> | \<\<tiddler [["+tiddler.title+"::u]]\>\> | \<\<tiddler [["+tiddler.title+"::c]]\>\> |\<\<tiddler [["+tiddler.title+"::j]]\>\> |"' begin '""' end '""' none '"////"'>>/%
/%
|MaJ|11.09.2024|
|y|ISAC|
|z|NL|
%/
<<tiddler f_IdIRT with: [[ISAC - NL - FI-ISAC NL]]>>/%
|c|2003|
|d|NL|
|n|FI-ISAC NL ((*(Financial Institutes ISAC NL))|
|o|Financial Institutes|
|k|Finance|
|l|[[⇗|https://www.linkedin.com/company/fi-isac-nl/]]|
|L|[[⇗|https://www.linkedin.com/company/fi-isac-nl/posts/?feedView=all]]|
|m|+++[🖂] fi-isac[@]nvb[.]nl === |
|u|[[⇗|https://www.betaalvereniging.nl/samenwerking/publiek-private-samenwerking/]]|
|y|ISAC|
|z|NL|
|QtD|09.2024|
|QtM|25|%/
!!Liste (non exhaustive) des ISACs à Singapour
<<forEachTiddler where 'tiddler.tags.containsAny(["SG__I"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "| ^^Sources agrégées : connaissances personnelles^^ |c\n|sortable|k\n|#|Nom|Secteur| Site | ^^Date de
création^^ | Divers |h\n| " : "\n| ")+(index+1)+"|[[" + tiddler.title.substr(12)+"|"+tiddler.title+"]] |\<\<tiddler [["+tiddler.title+"::k]]\>\> | \<\<tiddler [["+tiddler.title+"::u]]\>\> | \<\<tiddler [["+tiddler.title+"::c]]\>\> |\<\<tiddler [["+tiddler.title+"::j]]\>\> |"' begin '""' end '""' none '"////"'>>/%
/%
|MaJ|11.09.2024|
|y|ISAC|
|z|SG|
%/
<<tiddler f_IdIRT with: [[ISAC - SG - OT-ISAC]]>>/%
|d|SG|
|n|OT-ISAC|
|o|Operational Technology ISAC|
|k|Systèmes industriels|
|l|[[⇗|https://www.linkedin.com/company/operational-technology-information-sharing-and-analysis-center-ot-isac/]]|
|L|[[⇗|https://www.linkedin.com/company/operational-technology-information-sharing-and-analysis-center-ot-isac/posts/?feedView=all]]|
|m|+++[🖂] info[@]otisac[.]org === |
|t|+++[🕾] +65 6022 2531 === |
|u|[[⇗|https://www.otisac.org/]]|
|y|ISAC|
|z|SG|
|QtD|09.2024|
|QtM|18|%/
!!Liste (non exhaustive) des ISACs aux États-Unis (et ailleurs…)
<<forEachTiddler where 'tiddler.tags.containsAny(["81_","81_0_"])' sortBy 'tiddler.title.toUpperCase()' ascending write '((index == 0) ? "| ^^Sources agrégées : [[National Council of ISACs|https://www.nationalisacs.org/]], connaissances personnelles^^ |c\n|sortable|k\n|#|Nom|Secteur| Site |((NCI(Membre national Council od ISACs)))| ^^Date de
création^^ | Divers |h\n| " : "\n| ")+(index+1)+"|[[" + tiddler.title.substr(12)+"|"+tiddler.title+"]] |\<\<tiddler [["+tiddler.title+"::k]]\>\> | \<\<tiddler [["+tiddler.title+"::u]]\>\> | \<\<tiddler [["+tiddler.title+"::81]]\>\> | \<\<tiddler [["+tiddler.title+"::c]]\>\> |\<\<tiddler [["+tiddler.title+"::j]]\>\> |"' begin '""' end '""' none '"////"'>>/%
|MaJ|11.09.2024|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - A-ISAC]]>>/%
|81|✔|
|b|[[⇗|https://www.a-isac.com/aviation-cybersecurity-blog]]|
|d|US|
|L|[[⇗|https://www.linkedin.com/company/aviation-isac/posts/?feedView=all]]|
|l|[[⇗|https://www.linkedin.com/company/aviation-isac]]|
|n|A-ISAC ((*(Aviation-ISAC)))|
|o|Aviation|
|k|Aviation|
|Twi|[[⇗|https://twitter.com/AviationISAC]]|
|u|[[⇗|https://www.a-isac.com/]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - Auto-ISAC]]>>/%
|81|✔|
|c|2015|
|d|US|
|n|Auto-ISAC ((*(Automotive ISAC)))|
|o|Automotive|
|k|Automobile|
|u|[[⇗|https://automotiveisac.com]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - FB-ISAO]]>>/%
|81|x|
|c|2018|
|d|US|
|k|Confiance|
|l|[[⇗|https://www.linkedin.com/company/fb-isao/]]|
|L|[[⇗|https://www.linkedin.com/company/fb-isao/posts/?feedView=all]]|
|m|+++[🖂] info[@]faithbased-isao[.]org === |
|n|FB-ISAO ((*(Faith-Based ISAO)))|
|t|+++[🕾] +703 977-7059 === |
|Twi|[[⇗|https://twitter.com/faithbasedisao]]|
|u|[[⇗|https://faithbased-isao.org/]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - BIO-ISAC]]>>/%
|81|x|
|c|2021|
|d|US|
|k|Bio-économie|
|l|[[⇗|https://www.linkedin.com/company/bio-isac/]]|
|L|[[⇗|https://www.linkedin.com/company/bio-isac/posts/?feedView=all]]|
|m|+++[🖂] help[@]isac[.]bio === |
|n|BIO-ISAC ((*(Bioeconomy ISAC)))|
|u|[[⇗|https://www.isac.bio/]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - ChemITC]]>>/%
|81|✔|
|d|US|
|n|American Chemistry Council ISAC|
|o|American Chemistry Council|
|k|Chimie et Pétro-chimie|
|u|[[⇗|https://www.americanchemistry.com/default.aspx]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - Comms ISAC]]>>/%
|81|✔|
|d|US|
|n|Communications ISAC|
|o|Communications|
|k|Communications|
|u|[[⇗|https://www.cisa.gov/national-coordinating-center-communications]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - DNG-ISAC]]>>/%
|81|✔|
|c|2014|
|d|US|
|k|Énergie / Distribution de gas naturel|
|l|[[⇗|https://www.linkedin.com/company/dng-isac/]]|
|L|[[⇗|https://www.linkedin.com/company/dng-isac/posts/?feedView=all]]|
|m|+++[🖂] analyst[@]dngisac[.]com === |
|n|DNG-ISAC ((*(Downstream Natural Gas ISAC)))|
|o|American Gas Association ((*((AGA)))|
|u|[[⇗|http://www.dngisac.com/]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - E-ISAC]]>>/%
|81|✔|
|c|1999|
|d|US|
|n|Electricity ISAC|
|o|Electricity|
|k|Énergie / Électricité|
|u|[[⇗|https://www.eisac.com/]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - EASE-ISAC]]>>/%
|81|x|
|c|2017|
|d|US|
|n|EASE-ISAC ((*(Energy Analytic Security Exchange ISAC)))|
|k|Energie|
|l|[[⇗|https://www.linkedin.com/company/energy-analytic-security-exchange-ease]]|
|L|[[⇗|https://www.linkedin.com/company/energy-analytic-security-exchange-easeposts/?feedView=all]]|
|m|+++[🖂] membership[@]energy-ase[.]com === |
|Twi|[[⇗|https://twitter.com/energyase?lang=en]]|
|u|[[⇗|https://www.energy-ase.com/]]|
|y|ISAC|
|z|na|
|QtD|09.2024|%/
<<tiddler f_IdIRT with: [[ISAC - US - EI-ISAC]]>>/%
|81|✔|
|c|2018|
|d|US|
|n|Elections Infrastructure ISAC|
|o|Elections Infrastructure|
|k|Infrastructures électorales|
|u|[[⇗|https://www.cisecurity.org/ei-isac/]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - EMR-ISAC]]>>/%
|81|✔|
|c|2000|
|d|US|
|n|Emergency Management And Response ISAC|
|o|Emergency Management And Response|
|k|Gestion et Organisation des Secours|
|u|[[⇗|https://www.usfa.dhs.gov/emr-isac]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - FS-ISAC]]>>/%
|81|✔|
|c|1999|
|d|US|
|n|Financial Services ISAC|
|o|Financial Services|
|k|Services financiers|
|u|[[⇗|https://www.fsisac.com/]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - Food and Ag-ISAC]]>>/%
|81|✔|
|n|Food And Agriculture ISAC|
|k|Alimentation et Agriculture|
|o|Food And Agriculture|
|u|[[⇗|https://www.foodandag-isac.org/]]|
|d|US|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - H-ISAC]]>>/%
|81|✔|
|c|2010|
|n|Health ISAC|
|k|Santé / Pharmacie, Hopitaux, Cliniques privées|
|l|[[⇗|https://www.linkedin.com/company/health-isac/]]|
|L|[[⇗|https://www.linkedin.com/company/health-isac/posts/?feedView=all]]|
|o|Health|
|t|+++[🕾] +1 321-593-1470 === |
|u|[[⇗|http://www.h-isac.org]]|
|d|US|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - Healthcare Ready ISAC]]>>/%
|81|✔|
|n|Healthcare Ready|
|k|Santé / Continuité des soins, Médecine d'urgence|
|o|Healthcare Ready|
|u|[[⇗|https://healthcareready.org/]]|
|d|US|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - ICS-ISAC]]>>/%
|81|x|
|c|2012|
|d|US|
|n|ICS-ISAC ((*(Industrial Control Systems ISAC)))|
|k|Systèmes industriels|
|l|[[⇗|https://www.linkedin.com/company/ics-isac/]]|
|L|[[⇗|https://www.linkedin.com/company/ics-isac//posts/?feedView=all]]|
|t|+++[🕾] +1 202 900-7500 === |
|m|+++[🖂] info[@]ics-isac[.]org === |
|u|[[⇗|http://www.ics-isac.org]]|
|y|ISAC|
|z|na|
|QtD|09.2024|%/
<<tiddler f_IdIRT with: [[ISAC - US - IT-ISAC]]>>/%
|81|✔|
|c|2000|
|d|US|
|n|Information Technology ISAC|
|o|Information Technology|
|k|Gestion de l'Information / Informatique|
|u|[[⇗|http://www.it-isac.org]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - LS-ISAO]]>>/%
|81|x|
|c|2015|
|d|US|
|n|LS-ISAO ((*(Legal Services Information Sharing and Analysis Organization)))|
|k|Juridique|
|l|[[⇗|https://www.linkedin.com/company/ls-isao/]]|
|L|[[⇗|https://www.linkedin.com/company/ls-isao/posts/?feedView=all]]|
|u|[[⇗|https://www.ls-isao.com/]]|
|y|ISAC|
|z|US, CA, UK, AU, NZ|
|QtD|09.2024|%/
<<tiddler f_IdIRT with: [[ISAC - US - MFG-ISAC]]>>/%
|81|x|
|d|US|
|k|Manufacturing|
|l|[[⇗|https://www.linkedin.com/company/manufacturing-isac/]]|
|L|[[⇗|https://www.linkedin.com/company/manufacturing-isac/posts/?feedView=all]]|
|m|+++[🖂] info[@]mfgisac[.]org === |
|n|MFG-ISAC ((*(Manufacturing ISAC)))|
|o|Global Resilience Federation|
|u|[[⇗|https://www.mfgisac.org/]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - ME ISAC]]>>/%
|81|✔|
|n|Media + Entertainment ISAC|
|k|Media et Entertainment|
|o|Media + Entertainment|
|u|[[⇗|https://meisac.org]]|
|d|US|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - MS-ISAC]]>>/%
|81|✔|
|n|Multi-State ISAC|
|k|Multi-State|
|o|Multi-State|
|u|[[⇗|https://www.cisecurity.org/ms-isac/]]|
|d|US|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - MTS-ISAC]]>>/%
|81|✔|
|n|Maritime Transportation System ISAC|
|k|Transports / Maritime|
|o|Maritime Transportation System|
|u|[[⇗|https://www.mtsisac.org/]]|
|d|US|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - ND-ISAC]]>>/%
|81|✔|
|c|2017|
|d|US|
|n|National Defense ISAC|
|o|National Defense|
|k|Défense Nationale|
|u|[[⇗|https://www.ndisac.org/]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - NEI]]>>/%
|81|x|
|d|US|
|n|NEI ((*(Nuclear Energy ISAC)))|
|k|Energie / Nucléaire|
|y|ISAC|
|z|na|
|QtD|09.2024|%/
<<tiddler f_IdIRT with: [[ISAC - US - ONG ISAC]]>>/%
|81|✔|
|n|Oil & Natural Gas ISAC|
|k|Énergie / Combustibles & Gaz Naturel|
|o|Oil & Natural Gas|
|u|[[⇗|www.ongisac.org]]|
|d|US|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - RE ISAC]]>>/%
|81|✔|
|n|Real Estate ISAC|
|k|Immobilier|
|o|Real Estate|
|u|[[⇗|https://www.reisac.org/]]|
|d|US|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - REN ISAC]]>>/%
|81|✔|
|n|Research And Education Networks ISAC|
|k|Éducation et Recherche|
|o|Research And Education Networks|
|u|[[⇗|https://www.ren-isac.net/]]|
|d|US|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - RH-ISAC]]>>/%
|81|✔|
|c|2014|
|d|US|
|n|Retail And Hospitality ISAC|
|o|Retail And Hospitality|
|k|Vente au Détail et Hôtelerie|
|u|[[⇗|https://www.rhisac.org/]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - SC-ISAC]]>>/%
|d|US|
|n|SC-ISAC ((*(Supply Chain ISAC)))|
|k|Chaiîne d'approvisionnement|
|y|ISAC|
|z|na|
|QtD|09.2024|%/
<<tiddler f_IdIRT with: [[ISAC - US - SEAL-ISAC]]>>/%
|81|x|
|d|US|
|n|SEAL-ISAC ((*(Security Alliance ISAC)))|
|k|Produits de cybersécurité|
|u|[[⇗|https://isac.securityalliance.org/]]|
|y|ISAC|
|z|na|
|QtD|09.2024|%/
<<tiddler f_IdIRT with: [[ISAC - US - ST, PT and OTRB ISACs]]>>/%
|81|✔|
|n|Surface Transportation, Public Transportation And Over-The-Road Bus ISACs|
|k|Transports / de Surface, Public et Autobus|
|m|+++[🖂] ST & PT ISACs : st-isac[@]surfacetransportationisac[.]or[.]org
OTRB ISAC : mcanalyst[@]motorcoachisac[.]org === |
|o|Surface Transportation, Public Transportation And Over-The-Road Bus|
|u|[[⇗|https://www.surfacetransportationisac.org/]]|
|d|US|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - Small Broadband Provider ISAC]]>>/%
|81|✔|
|n|Small Broadband ISAC|
|k|Communications / Réseaux de diffusion capillaires|
|o|Small Broadband|
|u|[[⇗|https://www.ntca.org/member-services/cybershare]]|
|d|US|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - Space ISAC]]>>/%
|81|✔|
|c|2019|
|d|US|
|n|Space ISAC|
|o|Space|
|k|Espace|
|u|[[⇗|https://spaceisac.org/]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - Travel ISAC]]>>/%
|81|x|
|n|Travel ISAC|
|k|Voyages|
|l|[[⇗|https://www.linkedin.com/company/travelisac/]]|
|o|American Hotel & Lodging Association|
|u|--[[⇗|https://www.htng.org/page/TravelISAC]]--|
|d|US|
|y|ISAC|
|z|na|
|j|@@color:#E1000F;Pas d'activité récente@@|
%/
<<tiddler f_IdIRT with: [[ISAC - US - Tribal-ISAC]]>>/%
|81|✔|
|n|Tribal ISAC|
|k|Collectivités Régionales et Territoriales|
|o|Tribal|
|u|[[⇗|https://tribalisac.org/]]|
|d|US|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[ISAC - US - WaterISAC]]>>/%
|81|✔|
|c|2002|
|d|US|
|n|Water ISAC|
|o|Water|
|k|Gestion de l'Eau|
|u|[[⇗|https://www.waterisac.org/]]|
|y|ISAC|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - BF - CIRT.BF]]>>/%
|99|-|
|1|x|
|44|Membre|
|7|-|
|47|x|
|c|?|
|d|BF|
|f|🇧🇫|
|g|✔|
|n|CIRT.BF ((*(CIRT Burkina Faso)))|
|o||
|p|-|
|r|@@color:#E1000F;''X''@@|
|u|[[⇗|https://www.cirt.bf/]]|
|y|Institutionnel|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - BI - Burundi NatCSIRT]]>>/%
|99|-|
|1|x|
|7|-|
|47|x|
|47|✔|
|c|?|
|d|BI|
|f|🇧🇮|
|g|✔|
|n|Burundi NatCSIRT|
|p|-|
|r|@@color:#E1000F;''X''@@|
|u|x|
|y|Institutionnel|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - BJ - bjCSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/bjcsirt]]|
|44|Membre|
|c|?|
|f|🇧🇯|
|g|✔|
|n|bjCSIRT ((*(Benin Incident Response Team)))|
|99|-|
|o|ANSSI|
|p|0xA021CE57|
|r|FR [[⇗|https://csirt.gouv.bj/bjcsirt-rfc2350-fr/]] / EN [[⇗|https://csirt.gouv.bj/bjcsirt-rfc2350-en/]]|
|47|[[Listed|https://www.trustbroker.africa/registry/teams/bjcsirt-bj.html]]|
|7|-|
|d|BJ|
|y|Institutionnel|
|u|[[⇗|https://csirt.gouv.bj/]]|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - BW - Botswana National CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/botswana-csirt]]|
|44|Membre|
|c|2020|
|f|🇧🇼|
|h|+++[☎] +267 73111260 === |
|47|✔|
|n|Botswana-CSIRT ((*(Botswana National CSIRT)))|
|99|-|
|o|BOCRA ((*(Botswana Communications Regulatory Authority)))|
|p|0x278D73A9|
|r|[[⇘|http://cirt.org.bw/themes/custom/bwcirt/documents/RFC-2350-2022.pdf]]|
|47|[[Listed|https://www.trustbroker.africa/registry/teams/bjcsirt-bj.html]]|
|t|+++[🕾] +267 3685548 === |
|7|[[Accredited|https://trusted-introducer.org/directory/teams/botswana-csirt-bw.html]]|
|d|BW|
|u|[[⇗|https://cirt.org.bw/]]|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - BJ - UNB-CSIRT]]>>/%
|d|BJ|
|f|🇧🇯|
|z|AF|
|o||
|n|UNB-CSIRT|
|u|[[⇗|https://csirt.etudiant.bj/]]|
|y|Institutionnel|
|7|-|
|1|x|
|44|Membre|
|47|x|
|99|-|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
%/
<<tiddler f_IdIRT with: [[CSIRT - CD - CERT Congo]]>>/%
|1|x|
|47|-|
|7|-|
|99|-|
|d|CD|
|f|🇨🇩|
|g|✔|
|j|Niveau d'activité : inconnu|
|n|CERT Congo|
|u|[[⇗|https://certcd.com]]|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - CI - CI-CERT]]>>/%
|1|[[✔|https://first.org/members/teams/ci-cert]]|
|44|Membre|
|47|x|
|7|-|
|99|✔|
|c|?|
|d|CI|
|f|🇨🇮|
|g|✔|
|l|[[⇗|https://www.linkedin.com/company/ci-cert/]]|
|L|[[⇗|https://www.linkedin.com/company/ci-cert/posts/?feedView=all]]|
|n|CI-CERT ((*(Cote d'Ivoire - Computer Emergency Response Team)))|
|o|CI-CERT|
|p|0xB1EA2126|
|r|@@color:#E1000F;''X''@@|
|u|[[⇗|https://www.cicert.ci/index.php/contact]]|
|y|Institutionnel|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - CM - CIRT CM]]>>/%
|99|-|
|1|x|
|44|Membre|
|7|-|
|47|x|
|c|?|
|d|CM|
|f|🇨🇲|
|g|✔|
|n|CIRT CM ((*(CIRT Cameroun)))|
|o||
|p|-|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +237 694 405 868 === |
|u|[[⇗|https://www.cirt.cm]]|
|y|Institutionnel|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - DZ - DZ-CERT]]>>/%
|1|x|
|44|Membre|
|47|x|
|7|-|
|99|-|
|c|?|
|d|DZ|
|f|🇩🇿|
|g|✔|
|j|Niveau d'activité : inconnu|
|n|DZ-CERT|
|o|CERIST ((*(Centre de Recherche sur l'information Scientifique et Technique)))|
|p|-|
|r|@@color:#E1000F;''X''@@|
|u|[[⇗|https://www.cerist.dz/index.php/fr/rechercheetdevelop/116-projets-de-recherche-innovants/238-dz-cert-algerian-computer-emergency-response-team]]|
|y|Institutionnel|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - EG - EG-CERT]]>>/%
|d|EG|
|f|🇪🇬|
|z|AF|
|n|EG-CERT ((*(Egyptian National Computer Emergency Readiness Team)))|
|u|[[⇗|https://www.egcert.eg/]]|
|z|AF|
|o|National Telecom Regulatory Authority (NTRA)|
|y|Institutionnel|
|g|✔|
|1|[[✔|https://first.org/members/teams/eg-cert]]|
|7|-|
|44|Membre|
|47|x|
|99|✔|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - EG - EG-FinCIRT]]>>/%
|1|[[✔|https://first.org/members/teams/eg-fincirt]]|
|c|?|
|f|🇪🇬|
|n|EG-FinCIRT ((*(Egyptian Financial CIRT)))|
|99|✔|
|o|Central Bank of Egypt|
|p|0x5C8A50B6|
|r|@@color:#E1000F;''X''@@|
|47|x|
|7|-|
|d|EG|
|y|Sectoriel|
|u|[[⇗|https://www.egfincirt.org.eg/]]|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - ET - Ethio-CERT]]>>/%
|d|ET|
|f|🇪🇹|
|z|AF|
|n|Ethio-CERT|
|u|[[⇗|https://ethiocert.insa.gov.et]]|
|g|✔|
|7|-|
|44|Membre|
|47|x|
|1|✔|
|99|-|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - GH - CERT-GH]]>>/%
|d|GH|
|f|🇬🇭|
|z|AF|
|n|CERT-GH ((*(National CERT Ghana)))|
|u|[[⇗|https://cybersecurity.gov.gh/cert]]|
|g|✔|
|1|✔|
|7|-|
|44|Membre|
|47|x|
|99|-|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - GH - GCB Bank PLC SOC]]>>/%
|d|GH|
|f|🇬🇭|
|z|AF|
|o|GCB Bank PLC Security Operations Center|
|n|GCB Bank PLC SOC|
|u|[[⇗|https://www.gcbbank.com.gh/]]|
|y|Sectoriel|
|7|-|
|1|[[✔|https://first.org/members/teams/gcb_bank_plc_soc]]|
|47|x|
|99|-|
|c|2021|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - GH - NCA CERT]]>>/%
|d|GH|
|f|🇬🇭|
|z|AF|
|n|NCA CERT ((*(National Communication Authority CERT)))|
|u|[[⇗|https://nca-cert.org.gh/]]|
|7|-|
|44|Membre|
|47|x|
|99|-|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - GM - gmCSIRT]]>>/%
|d|GM|
|f|🇬🇲|
|z|AF|
|o|Public Utilities Regulatory Authority (PURA)|
|n|gmCSIRT|
|u|[[⇗|https://gmcsirt.gm/]]|
|y|Institutionnel|
|g|✔|
|1|x|
|7|-|
|44|Membre|
|47|x|
|47|[[Listed|https://www.trustbroker.africa/registry/teams/gmcsirt-gm.html]]|
|99|-|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|0xBC286328|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - KE - National KE-CIRT/CC]]>>/%
|d|KE|
|f|🇰🇪|
|z|AF|
|o|The Communications Authority of Kenya (CA)|
|n|National KE-CIRT/CC ((*(The National Kenya Computer Incident Response Team - Coordination Centre)))|
|u|[[⇗|https://www.ke-cirt.go.ke/]]|
|y|Institutionnel|
|g|✔|
|1|✔|
|7|-|
|44|Membre|
|47|[[Listed|https://www.trustbroker.africa/registry/teams/ke-cirt-cc-ke.html]]|
|99|-|
|c|2012|
|r|@@color:#E1000F;''X''@@|
|p|0x3B9A75F3|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - KE - KENET-CERT]]>>/%
|99|✔|
|1|x|
|44|Membre|
|7|-|
|47|[[Listed|https://www.trustbroker.africa/registry/teams/ke-cirt-cc-ke.html]]|
|99|-|
|c|2015|
|d|KE|
|f|🇰🇪|
|g|x|
|h|+++[☎] +254.7.03044000 === |
|m|+++[🖂] cert[@]kenet[.]or[.]ke === |
|n|KENET-CERT ((*(Kenya Education Network Cybersecurity Emergency Response Team - Coordination Centre)))|
|o|Kenya Education Network|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +254.7.32150000 === |
|u|[[⇗|https://cert.kenet.or.ke/]]|
|y|Institutionnel|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - KE - ICIRT Tespok]]>>/%
|d|KE|
|f|🇰🇪|
|z|AF|
|n|ICIRT Tespok|
|u|[[⇗|https://www.tespok.co.ke/]]|
|7|-|
|44|Membre|
|47|x|
|99|-|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - LY - Lybia-CERT]]>>/%
|d|LY|
|f|🇱🇾|
|z|AF|
|n|Libya-CERT|
|z|AF|
|o|NISSA ((*(National Information Security and Safety Authority)))|
|u|[[⇗|https://nissa.gov.ly]]|
|g|✔|
|1|x|
|7|-|
|44|Membre|
|47|x|
|99|✔|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - MA - CERT-BAM]]>>/%
|MaJ|O3K|
|d|MA|
|f|🇲🇦|
|z|AF|
|o|Bank Al Maghrib|
|n|CERT-BAM|
|y|Interne|
|7|[[Listed|https://trusted-introducer.org/directory/teams/cert-bam-ma.html]]|
|1|⨯|
|44|Membre|
|47|x|
|99|-|
|c|2015|
|r|@@color:#E1000F;''X''@@|
|p|0x682AEA3C|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - MA - Dataprotect-CSIRT]]>>/%
|d|MA|
|f|🇲🇦|
|z|AF|
|o||
|n|Dataprotect-CSIRT|
|u|x|
|y|Externe|
|7|-|
|1|✔|
|47|x|
|99|-|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - MA - EDU-CERT]]>>/%
|d|MA|
|f|🇲🇦|
|z|AF|
|o||
|n|EDU-CERT|
|u|[[⇗|https://www.educert.ma/]]|
|y|Institutionnel|
|7|-|
|1|x|
|44|Membre|
|47|x|
|99|-|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - MA - LMPS CERT]]>>/%
|d|MA|
|f|🇲🇦|
|z|AF|
|o||
|n|LMPS CERT|
|u|x|
|y|Externe|
|7|-|
|1|✔|
|99|-|
|c|?|
|44|Membre|
|47|x|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - MA - maCERT]]>>/%
|d|MA|
|f|🇲🇦|
|z|AF|
|o|DGSSI ((*(Direction de gestion du centre de veille, de détection et de réaction aux attaques informatique)))|
|n|maCERT|
|u|[[⇗|https://www.dgssi.gov.ma/macert.html]]|
|y|Institutionnel|
|g|✔|
|1|✔|
|7|[[Listed|https://trusted-introducer.org/directory/teams/macert.html]]|
|44|Membre|
|47|x|
|99|✔|
|c|2011|
|r|@@color:#E1000F;''X''@@|
|p|0xE741F0D2|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - MU - CERT-MU]]>>/%
|1|[[✔|https://first.org/members/teams/cert-mu]]|
|44|Membre|
|c|2008|
|f|🇲🇺|
|g|✔|
|n|CERT-MU|
|99|-|
|o||
|p|0x37E8373C|
|r|[[⇘|https://cert-mu.govmu.org/cert-mu/?page_id=2058]] [[⇘|https://cert-mu.govmu.org/cert-mu/wp-content/uploads/2023/09/RFC-2350-Profile-1.2.pdf]]|
|47|x|
|7|[[Certified|https://trusted-introducer.org/directory/teams/cert-mu-mu.html]] ^^2024^^|
|d|MU|
|y|Institutionnel|
|u|[[⇗|https://cert-mu.govmu.org/cert-mu/]]|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - MW - mwCERT]]>>/%
|99|-|
|1|[[✔|https://first.org/members/teams/mwcert]]|
|44|Membre|
|7|-|
|47|x|
|c|?|
|c|2017|
|d|MW|
|f|🇲🇼|
|g|✔|
|h|@@color:#E1000F;+++[☎] +265.1812912 ===@@ |
|MaJ|O4A|
|m|+++[🖂] info[@]mwcert[.]mw === |
|n|mwCERT ((*(Malawi Computer Emergency Response Team)))|
|o|Malawi Communications Regulatory Authority|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|t|+++[🕾] +265.1810497 === |
|u|[[⇗|https://mwcert.mw]]|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - MZ - MoRENet CSIRT]]>>/%
|d|MZ|
|f|🇲🇿|
|o|CSIRT of Mozambique Research and Education Network|
|n|MoRENet CSIRT|
|u|[[⇗|https://csirt.morenet.ac.mz/]]|
|t|+++[🕾] +258.84.206.9850 === |
|m|+++[🖂] cert[@]morenet[.]ac[.]mz === |
|r|[[⇘|https://csirt.morenet.ac.mz/wp-content/uploads/2019/06/RFC-2350_MoRENet.pdf]]|
|p|0xE3117CD3
0x6316A070|
|44|Membre|
|47|[[Listed|https://www.trustbroker.africa/registry/teams/morenet-csirt-mz.html]]|
|99|-|
|z|AF|
|y|Institutionnel|
|7|-|
|1|x|
|c|2018|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - MZ - NCSIRT]]>>/%
|d|MZ|
|f|🇲🇿|
|n|NCSIRT ((*(CSIRT National du Mozambique)))|
|u|[[⇗|https://csirt.mz/ ]]|
|r|[[⇘|https://csirt.mz/wp-content/uploads/2023/12/RFC2350.pdf]]|
|44|Membre|
|z|AF|
|g|✔|
|1|x|
|7|-|
|47|x|
|99|-|
|c|?|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - NG - ngCERT]]>>/%
|d|NG|
|f|🇳🇬|
|z|AF|
|n|ngCERT|
|u|[[⇗|https://www.cert.gov.ng]]|
|g|✔|
|1|x|
|7|-|
|44|Membre|
|47|x|
|99|-|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - NG - CS2]]>>/%
|d|NG|
|f|🇳🇬|
|z|AF|
|n|CS2 ((*(Consultancy Support Service)))|
|u|[[⇗|https://www.consultancyss.com]]|
|m|+++[🖂] OIC-CERT[@]consultancyss[.]com === |
|99|✔|
|1|x|
|7|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - NG - CERRTng]]>>/%
|d|NG|
|f|🇳🇬|
|z|AF|
|n|CERRTng|
|u|[[⇗|https://www.cerrt.ng/]]|
|7|-|
|44|Membre|
|47|x|
|99|-|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - RW - RW-CSIRT]]>>/%
|1|✔|
|44|Membre|
|47|x|
|7|-|
|99|-|
|c|2014|
|d|RW|
|f|🇷🇼|
|g|✔|
|m|+++[🖂] rwcsirt[@]ncsa[.]gov[.]rw === |
|n|RW-CSIRT|
|o|NCSA ((*(National Cyber Security Authority)))|
|p|[[0x7512D852|https://cyber.gov.rw/index.php?eID=dumpFile&t=f&f=334&token=d58456fa7474467f1ca0833cb16c45b5ea8baa54]]|
|r|[[⇘|https://cyber.gov.rw/index.php?eID=dumpFile&t=f&f=343&token=0daaf1b03612b7139990b8db756eedac7d64ee51]]|
|t|+++[🕾] +250 791 445 224 === |
|u|[[⇗|https://cyber.gov.rw/rw-csirt/]]|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - SD - SudanCERT]]>>/%
|d|SD|
|f|🇸🇩|
|z|AF|
|n|SudanCERT|
|u|[[⇗|https://http: //www.cert.sd]]|
|7|-|
|1|✔|
|44|Membre|
|47|x|
|c|?|
|r|@@color:#E1000F;''X''@@|
|99|✔|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - SN - CSIRT ADIE.SN]]>>/%
|1|x|
|47|x|
|7|-|
|99|-|
|aSN|-|
|c|?|
|d|SN|
|f|🇸🇳|
|g|Gouv.|
|m|-|
|n|CSIRT ADIE.SN|
|p|-|
|r|@@color:#E1000F;''X''@@|
|t|x|
|u|[[⇗|https://senegalnumeriquesa.sn/expertise/s%C3%A9curit%C3%A9]]|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - SN - CSIRT Universitaire]]>>/%
|1|x|
|c|?|
|m|+++[🖂] contact[@]csirt-universitaire[.]org === |
|f|🇸🇳|
|g|x|
|n|CSIRT Universitaire|
|99|-|
|p|-|
|r|@@color:#E1000F;''X''@@|
|47|x|
|t|+++[🕾] +221.786016464 === |
|7|-|
|d|SN|
|u|[[⇗|https://csirt-universitaire.org/]]|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - SN - STCC-SSI]]>>/%
|1|x|
|c|?|
|m|-|
|f|🇸🇳|
|g|Nat.|
|n|CERT STCC-SSI|
|99|-|
|p|-|
|r|@@color:#E1000F;''X''@@|
|47|x|
|t|-|
|7|-|
|d|SN|
|u|[[⇗|https://stcc-ssi.sn/]]|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - SO - SOMCERT]]>>/%
|d|SO|
|f|🇸🇴|
|z|AF|
|n|SOMCERT|
|u|[[⇗|https://somcert.gov.so/ ]]|
|m|+++[🖂] somcert[@]nca[.]gov[.]so === |
|g|✔|
|1|x|
|7|-|
|44|Membre|
|47|x|
|99|✔|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - SS - SS-CIRT/CC]]>>/%
|1|x|
|c|?|
|d|SS|
|f|🇸🇸|
|g|✔|
|n|South Sudan CIRT/CC|
|o|SS-CIRT/CC|
|p|@@color:#E1000F;''X''@@|
|r|@@color:#E1000F;''X''@@|
|u|x|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - TG - CERT.TG]]>>/%
|1|[[✔|https://first.org/members/teams/cert-tg]]|
|44|Membre|
|c|2020|
|f|🇹🇬|
|g|✔|
|n|CERT.TG|
|99|-|
|o||
|p|@@color:#E1000F;''X''@@|
|r|[[⇘|https://cert.tg/wp-content/uploads/2021/01/RFC2350-FR.pdf]]|
|47|[[Listed|https://www.trustbroker.africa/registry/teams/cert-tg-tg.html]]|
|7|[[Listed|https://trusted-introducer.org/directory/teams/certtg.html]]|
|d|TG|
|y|Institutionnel|
|u|[[⇗|https://cert.tg/]]|
|z|AF|
|t|+++[🕾] +228.22535980 === |
|h|+++[☎] +228.70549325 === |
|m|[[⇗|contact[@]cert[.]tg]]|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - TN - CSIRT.TN]]>>/%
|d|TN|
|f|🇹🇳|
|z|AF|
|o||
|n|CSIRT.TN (Private)|
|u|[[⇗|https://csirt.tn/]]|
|y|Sector|
|7|-|
|1|✔|
|44|Membre|
|47|x|
|99|-|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - TN - tunCERT]]>>/%
|d|TN|
|f|🇹🇳|
|z|AF|
|o||
|n|tunCERT|
|u|[[⇗|https://tuncert.ansi.tn/]]|
|y|Institutionnel|
|g|✔|
|1|✔|
|7|-|
|44|Membre|
|47|x|
|99|✔|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - TN - Tunisian Financial CERT]]>>/%
|MaJ|O3K|
|d|TN|
|f|🇹🇳|
|z|AF|
|o||
|n|Tunisian Financial CERT|
|u|[[⇗|https://www.financialcert.tn/]]|
|y|Sectoriel|
|7|-|
|1|⨯|
|44|Membre|
|47|x|
|99|-|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - TZ - TZ-CERT]]>>/%
|d|TZ|
|f|🇹🇿|
|z|AF|
|n|TZ-CERT|
|u|[[⇗|https://www.tzcert.go.tz]]|
|g|✔|
|1|✔|
|7|-|
|44|Membre|
|47|x|
|99|-|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|47|✔|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - UG - CERT.UG]]>>/%
|d|UG|
|f|🇺🇬|
|z|AF|
|o|National Information Technology Authority (NITA)|
|n|CERT.UG/CCT|
|u|[[⇗|https://cert.ug/]]|
|y|Institutionnel|
|Nat|National CSIRT|
|7|-|
|1|x|
|44|Membre|
|47|x|
|99|-|
|c|2016|
|r|@@color:#E1000F;''X''@@|
|p|-|
|Twi|[[CERT_UG|
|u|[[⇗|https://twitter.com/CERT_UG]]|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - UG - RENU-CERT]]>>/%
|d|UG|
|f|🇺🇬|
|z|AF|
|o|The Research and Education Network for Uganda|
|n|RENU-CERT|
|u|[[⇗|https://cert.renu.ac.ug/]]|
|y|Institutionnel|
|7|Listed|
|1|x|
|47|[[Listed|https://www.trustbroker.africa/registry/teams/renu-cert-ug.html]]|
|99|-|
|c|2016|
|r|@@color:#E1000F;''X''@@|
|p|0x2BC0253B|
|Twi|[[renu_cert|
|u|[[⇗|https://twitter.com/renu_cert]]|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - UG - UG-CERT]]>>/%
|d|UG|
|f|🇺🇬|
|z|AF|
|o|Uganda Communications Commission|
|n|UG-CERT ((*(Uganda Computer Emergency Response Team)))|
|u|[[⇗|https://www.ug-cert.ug]]|
|7|-|
|1|✔|
|44|Membre|
|47|x|
|99|✔|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|Twi|[[UgCERT|
|Twt|[[⇗|https://twitter.com/UgCERT]]|
|47|✔|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - ZA - CSHUB-CSIRT]]>>/%
|d|ZA|
|f|🇿🇦|
|z|AF|
|o||
|n|CSHUB-CSIRT|
|u|[[⇗|https://www.cybersecurityhub.gov.za/]]|
|y|Institutionnel|
|g|✔|
|1|x|
|7|-|
|44|Membre|
|47|x|
|99|-|
|c|2020|
|r|[[⇘|https://www.cybersecurityhub.gov.za/images/docs/FRC2350.pdf]]|
|p|0xF6C12ADD|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - ZA - ECS-CSIRT]]>>/%
|d|ZA|
|f|🇿🇦|
|z|AF|
|o||
|n|ECS-CSIRT ((*(Electronic Communications Security - CSIRT)))|
|u|[[⇗|https://www.ssa.gov.za/CSIRT.aspx/]]|
|y|Institutionnel|
|7|-|
|1|[[✔|https://first.org/members/teams/ecs-csirt]]|
|47|x|
|99|-|
|c|2003|
|r|-|
|p|0xF6C12ADD|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - ZA - SA NREN CSIRT]]>>/%
|d|ZA|
|f|🇿🇦|
|z|AF|
|o|Council for Scientific and Industrial Research (CSIR) (SANReN host) and the Tertiary Education and Research Network of South Africa (TENET)|
|n|SA NREN CSIRT|
|y|Institutionnel|
|7|[[Listed|https://trusted-introducer.org/directory/teams/sa-nren-csirt.html]]|
|1|✔|
|44|Membre|
|47|[[Listed|https://www.trustbroker.africa/registry/teams/sa-nren-csirt-za.html]]|
|99|-|
|c|2016|
|r|@@color:#E1000F;''X''@@|
|p|0xAA99CA2C|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - ZA - SBG CSIRT]]>>/%
|d|ZA|
|f|🇿🇦|
|z|AF|
|o|Standard Bank Group CSIRT|
|n|SBG CSIRT|
|y|Externe|
|7|-|
|1|x|
|47|x|
|99|-|
|c|?|
|r|@@color:#E1000F;''X''@@|
|p|-|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - ZA - UCT CSIRT]]>>/%
|d|ZA|
|f|🇿🇦|
|z|AF|
|o|University of Cape Town|
|n|UCT CSIRT|
|y|Institutionnel|
|7|-|
|1|✔|
|44|Membre|
|47|[[Listed|https://www.trustbroker.africa/registry/teams/uct-csirt-za.html]]|
|99|-|
|c|2019|
|r|@@color:#E1000F;''X''@@|
|p|0xBF6B73C8|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - ZM - ZmCIRT]]>>/%
|d|ZM|
|f|🇿🇲|
|z|AF|
|n|ZmCIRT ((*(Zambia Computer Incident Response Team)))|
|u|[[⇗|https://www.cirt.zm/]]|
|g|✔|
|1|✔|
|7|-|
|44|Membre|
|47|x|
|99|-|
|c|?|
|r|-|
|p|-|
|47|✔|
|z|AF|
%/
<<tiddler f_IdIRT with: [[CSIRT - AE - aeCERT]]>>/%
|99|-|
|1|✔|
|7|-|
|d|AE|
|f|🇦🇪|
|g|✔|
|n|aeCERT ((*(The United Arab Emirates - Computer Emergency Response Team)))|
|u|[[⇗|https://aecert.ae]]|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AE - DEWA Cyber Defence Center]]>>/%
|1|[[✔|https://first.org/members/teams/dewa_cyber_defence_center]]|
|n|DEWA Cyber Defence Center|
|f|🇦🇪|
|n|DEWA Cyber Defence Center|
|o|DEWA|
|d|AE|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AE - du SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/du_sirt]]|
|n|du SIRT]]|
|d|AE|
|f|🇦🇪|
|n|du Security Incident Response Team|
|o|du|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AE - ETISALAT Computer Emergency Response]]>>/%
|1|[[✔|https://first.org/members/teams/etisalat-cert]]|
|n|ETISALAT-CERT]]|
|f|🇦🇪|
|n|ETISALAT Computer Emergency Response|
|o|ETISALAT Computer Emergency Response|
|d|AE|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AE - MOI-CERT]]>>/%
|1|[[✔|https://first.org/members/teams/moi-cert]]|
|n|MOI-CERT]]|
|f|🇦🇪|
|n|MOI-CERT|
|o|MOI|
|d|AE|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AE - The Central Bank of UAE - CERT]]>>/%
|1|[[✔|https://first.org/members/teams/cbuae-cert]]|
|n|CBUAE-CERT]]|
|f|🇦🇪|
|n|The Central Bank of UAE - Computer Emergency Response Team|
|o|The Central Bank of UAE - Computer Emergency Response Team|
|d|AE|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AE - The United Arab Emirates - CERT]]>>/%
|1|[[✔|https://first.org/members/teams/aecert]]|
|n|aeCERT]]|
|f|🇦🇪|
|n|The United Arab Emirates - Computer Emergency Response Team|
|o|The United Arab Emirates - Computer Emergency Response Team|
|d|AE|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AF - AFCERT]]>>/%
|MaJ|O39|
|d|AF|
|f|🇦🇫|
|z|as|
|n|AFCERT|
|u|([[⇗|https://www.facebook.com/Afghanistan-Cyber-Emergency-Response-Team-AFCERT-334281470097389/]])|
|g|✔|
|1|x|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AM - AM-CERT]]>>/%
|1|✔|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/am-cert-am.html]]|
|99|-|
|c|2024|
|d|AM|
|f|🇦🇲|
|g|✔|
|h|+++[🕾] +374 12208080 === |
|m|[[⇗|cert[@]am-cert[.]am]]|
|n|National CERT/CSIRT Armenia|
|o|((ISAA(Information Systems Agency of Armenia)))|
|p|0xC45A21EF|
|r|[[⇗|https://am-cert.am/files/AM-CERT_RFC2350_EN.pdf]]|
|t|+++[🕾] +374 12208080 === |
|u|[[⇗|https://am-cert.am/]]|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AM - AM-CERT National CERT/CSIRT Armenia]]>>/%
|1|[[✔|https://first.org/members/teams/am-cert]]|
|n|AM-CERT]]|
|f|🇦🇲|
|n|AM-CERT National CERT/CSIRT Armenia|
|o|AM National CERT/CSIRT Armenia|
|d|AM|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AZ - Azerbaijan Government CERT]]>>/%
|1|[[✔|https://first.org/members/teams/cert-gov-az]]|
|n|CERT.GOV.AZ]]|
|f|🇦🇿|
|n|Azerbaijan Government CERT|
|o|Azerbaijan Government CERT|
|d|AZ|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AZ - CERT Azerbaijan]]>>/%
|1|[[✔|https://first.org/members/teams/cert-az]]|
|n|CERT.AZ]]|
|f|🇦🇿|
|n|CERT Azerbaijan|
|o|CERT Azerbaijan|
|d|AZ|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AZ - CERT.GOV.AZ]]>>/%
|d|AZ|
|f|🇦🇿|
|o|Azerbaijan Government CERT|
|z|as|
|n|CERT.GOV.AZ|
|u|[[⇗|]]|
|m|+++[🖂] team[@]cert[.]gov[.]az === |
|y|Institutionnel|
|g|✔|
|1|x|
|7|-|
|99|✔|
|c|?|
|r|-|
|p|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AZ - ACOA]]>>/%
|d|AZ|
|f|🇦🇿|
|o|-|
|z|as|
|n|ACOA ((*(Azerbaijan Cybersecurity Organizations Association)))|
|u|x|
|m|-|
|g|✔|
|1|x|
|7|-|
|99|✔|
|c|?|
|r|-|
|p|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - BD - BangladeshCERT]]>>/%
|d|BD|
|f|🇧🇩|
|z|as|
|n|BangladeshCERT|
|u|x|
|g|✔|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - BD - BDCERT]]>>/%
|d|BD|
|f|🇧🇩|
|z|as|
|n|BDCERT ((*(Bangladesh Computer Emergency Response Team)))|
|u|x|
|g|✔|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - BD - BGD E-Gov CERT]]>>/%
|1|[[✔|https://first.org/members/teams/bgd_e-gov_cirt]]|
|f|🇧🇩|
|g|✔|
|n|BGD E-Gov CERT ((*(Bangladesh e-Government Computer Incident Response Team)))|
|99|✔|
|7|-|
|d|BD|
|u|[[⇗|https://cirt.gov.bd]]|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - BH - Bahrain National CERT]]>>/%
|1|[[✔|https://first.org/members/teams/cert_bh]]|
|n|CERT BH]]|
|f|🇧🇭|
|n|Bahrain National CERT|
|o|Bahrain National CERT|
|d|BH|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - BH - NCSC-BH]]>>/%
|d|BD|
|f|🇧🇭|
|o|National Cyber Security Center - Kingdom of Bahrain|
|z|as|
|n|NCSC-BH|
|u|[[⇗|https://www.ncsc.gov.bh/en/index.html]]|
|m|+++[🖂] csirt[@]ncsc[.]gov[.]bh === |
|y|Institutionnel|
|g|✔|
|1|x|
|7|-|
|99|✔|
|c|?|
|r|-|
|p|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - BH - CTM360 CIRT]]>>/%
|1|[[✔|https://first.org/members/teams/ctm360]]|
|n|CTM360]]|
|f|🇧🇭|
|n|CTM360 CIRT|
|o|CTM360 CIRT|
|d|BH|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - BN - Brunei CERT]]>>/%
|1|[[✔|https://first.org/members/teams/brucert]]|
|n|BruCERT]]|
|f|🇧🇳|
|n|BruCERT ((*(Brunei Computer Emergency Response Team)))|
|u|[[⇗|https://brucert.org.bn]]|
|g|✔|
|d|BN|
|1|✔|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - BN - ITPSS Sdn. Bhd]]>>/%
|99|✔|
|1|x|
|7|-|
|d|BN|
|f|🇧🇳|
|g|✔|
|n|ITPSS Sdn. Bhd ((*(Information Technology Protective Security Services Sdn. Bhd. )))|
|u|x|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - BT - Bhutan CIRT]]>>/%
|99|-|
|1|x|
|1|[[✔|https://first.org/members/teams/btcirt]]|
|7|-|
|f|🇧🇹|
|g|✔|
|n|btCIRT ((*(Bhutan Computer Incident Response Team)))|
|n|BtCIRT]]|
|u|[[⇗|https://btcirt.bt]]|
|z|as|
<<tiddler f_IdIRT with: [[CSIRT - CN - CNCERT/CC]]>>/%
|99|-|
|1|✔|
|7|-|
|d|CN|
|f|🇨🇳|
|g|✔|
|n|CNCERT/CC ((*(National Computer Network Emergency Response Technical Team / Coordination Center of China)))|
|u|[[⇗|https://cert.org.cn]]|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - CW - CARICERT]>>/%
|d|CW|
|f|🇨🇼|
|z|as|
|n|CARICERT ((*(CARICERT)))|
|u|[[⇗|https://caricert.cw]]|
|g|✔|
|1|✔|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/caricert.html]]|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - GE - CERT.DGA.GOV.GE]]>>/%
|MaJ|O36|
|d|GE|
|f|🇬🇪|
|z|as|
|n|CERT.DGA.GOV.GE ((*(LEPL Digital Governance Agency, Ministry of Justice of Georgia)))|
|u|[[⇗|https://cert.dga.gov.ge/]]|
|m|+++[🖂] cert[@]dga[.]gov[.]ge === |
|t|+++[🕾] +995 0322 944 120 === |
|h|+++[☎] +995 0322 944 120 === |
|GMT|+4|
|g|✔|
|1|[[✔|https://first.org/members/teams/cert-dga-gov-ge]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/cert-dga-gov-ge.html]]|
|99|-|
|p|0x8EB7C84D|
|c|2011|
|zzz|Avant 2022.07: CERT-GOV-GE|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - ID - ID-SIRTII/CC]]>>/%
|d|ID|
|f|🇮🇩|
|z|as|
|n|ID-SIRTII/CC ((*(Indonesia Security Incident Response Team on Internet Infrastructure coordination centre)))|
|u|[[⇗|https://idsirtii.or.id]]|
|g|✔|
|1|✔|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - IL - CERT-IL]]>>/%
|d|IL|
|f|🇮🇱|
|z|as|
|n|CERT-IL ((*(Israel National Cyber Event Readiness Team)))|
|o|INCD ((*(Israel National Cyber Directorate)))|
|u|[[⇗|https://cyber.gov.il]]|
|m|+++[🖂] International[@]cyber.gov.il === |
|t|+++[🕾] +972 72 3990801 === |
|h|+++[☎] +972 72 3990801 === |
|g|✔|
|1|x|
|7|-|
|99|-|
|c|2014|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - IN - CERT-In]]>>/%
|d|IN|
|f|🇮🇳|
|z|as|
|n|CERT-In ((*(Indian Computer Emergency Response Team)))|
|u|[[⇗|https://cert-in.org.in]]|
|g|✔|
|1|✔|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - IR - APA-IUTcert]]>>/%
|d|IR|
|f|🇮🇷|
|z|as|
|n|APA-IUTcert ((*(Isfahan University if Technology CERT)))|
|o|Isfahan University if Technology ((APA(The Awareness, Prevention and Assistance Professional CERT Center)))|
|u|x|
|g|-|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - IR - APA-AUTcert]]>>/%
|d|IR|
|f|🇮🇷|
|z|as|
|n|APA-AUTcert ((*(Amirkabir University of Technology CERT)))|
|o|Amirkabir University of Technology ((APA(The Awareness, Prevention and Assistance Professional CERT Center)))|
|u|x|
|g|-|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - IR - APA-FUMcert]]>>/%
|d|IR|
|f|🇮🇷|
|z|as|
|n|APA-FUMcert ((*(Ferdowsi University of Mashhad)))|
|o|Ferdowsi University of Mashhady ((APA(The Awareness, Prevention and Assistance Professional CERT Center)))|
|u|x|
|m|+++[🖂] apa[@]maillist.um.ac.ir === |
|g|-|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - IR - APA-ShariftCert]]>>/%
|d|IR|
|f|🇮🇷|
|z|as|
|n|APA-ShariftCert ((*(Sharif University of Technology CERT)))|
|o|Sharif University of Technology ((APA(The Awareness, Prevention and Assistance Professional CERT Center)))|
|u|x|
|g|-|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - IR - APA-SUcert]]>>/%
|d|IR|
|f|🇮🇷|
|z|as|
|n|APA-SUcert ((*(Shiraz University ICT Center)))|
|o|Shiraz University ICT Center ((APA(The Awareness, Prevention and Assistance Professional CERT Center)))|
|u|x|
|g|-|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - IR - IrCERT]]>>/%
|d|IR|
|f|🇮🇷|
|z|as|
|n|IrCERT (APA)|
|o|ITRC ((*(Iran Telecommunication Research Center)))|
|u|x|
|g|-|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - IR - Maher Center]]>>/%
|d|IR|
|f|🇮🇷|
|z|as|
|n|Maher Center|
|o|Information Technology Organisation of Iran|
|u|x|
|g|-|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - IR - University of Bojnord CERT]]>>/%
|d|IR|
|f|🇮🇷|
|z|as|
|n|University of Bojnord CERT|
|o|University of Bojnord|
|u|x|
|m|+++[🖂] cert[@]ubcert.ir === |
|g|-|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JO - JoCERT]]>>/%
|1|x|
|7|Listed|
|99|✔|
|d|JO|
|f|🇯🇴|
|g|✔|
|n|JoCERT|
|u|[[⇗|https://ncsc.jo]]|
|z|as|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JO - JoFin-CERT]]>>/%
|d|JO|
|f|🇯🇴|
|z|as|
|n|JoFin-CERT ((*(Financial Computer Emergency Response Team)))|
|u|x|
|g|✔|
|1|x|
|7|Accredited|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Canon PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/canon_psirt]]|
|aJP|Membre|
|d|JP|
|f|🇯🇵|
|n|Canon PSIRT|
|o|Canon|
|y|Produit|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Chubu Electric Power Company Group CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/chuden-csirt]]|
|aJP|Membre|
|n|CHUDEN-CSIRT|
|f|🇯🇵|
|n|Chubu Electric Power Company Group CSIRT|
|o|Chubu Electric Power Company Group|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Cyber defense institute IRT]]>>/%
|1|[[✔|https://first.org/members/teams/cdi-cirt]]|
|n|CDI-CIRT|
|f|🇯🇵|
|n|Cyber defense institute Incident Response Team|
|o|Cyber defense institute|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Cyber Force Center]]>>/%
|1|[[✔|https://first.org/members/teams/cfc]]|
|aJP|x|
|n|CFC|
|f|🇯🇵|
|n|Cyber Force Center|
|o|Cyber Force Center|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - CyberAgent CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/cyberagent_csirt]]|
|aJP|Membre|
|n|CyberAgent CSIRT|
|f|🇯🇵|
|n|CyberAgent Computer Security Incident Response Team|
|o|CyberAgent|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Deloitte Tohmatsu CIRT]]>>/%
|1|[[✔|https://first.org/members/teams/dt-cirt]]|
|aJP|Membre|
|n|DT-CIRT|
|f|🇯🇵|
|n|Deloitte Tohmatsu Computer Incident Response Team|
|o|Deloitte Tohmatsu|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - DeNA CERT]]>>/%
|1|[[✔|https://first.org/members/teams/dena_cert]]|
|aJP|Membre|
|n|DeNA CERT|
|f|🇯🇵|
|n|DeNA Computer Emergency Response Team|
|o|DeNA Computer Emergency Response Team|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - DOCOMO CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/docomo-csirt]]|
|aJP|Membre|
|n|DOCOMO-CSIRT|
|f|🇯🇵|
|n|DOCOMO Computer Security Incident Response Team|
|o|DOCOMO|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Fast Retailing Group Information Security Office]]>>/%
|1|[[✔|https://first.org/members/teams/frg_iso]]|
|aJP|x|
|n|FRG ISO|
|f|🇯🇵|
|n|Fast Retailing Group Information Security Office|
|o|Fast Retailing Group Information Security Office|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - FUJIFILM Cybersecurity Incident Response/Readiness Team]]>>/%
|1|[[✔|https://first.org/members/teams/fujifilm_cert]]|
|aJP|Membre|
|n|FUJIFILM CERT|
|f|🇯🇵|
|n|FUJIFILM Cybersecurity Incident Response/Readiness Team|
|o|FUJIFILM Cybersecurity Incident Response/Readiness Team|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Fujitsu Cloud CERT]]>>/%
|1|[[✔|https://first.org/members/teams/fjc-cert]]|
|aJP|x|
|n|FJC-CERT|
|f|🇯🇵|
|n|Fujitsu Cloud CERT|
|o|Fujitsu Cloud CERT|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Hitachi IRT]]>>/%
|1|[[✔|https://first.org/members/teams/hirt]]|
|aJP|Membre|
|n|HIRT|
|f|🇯🇵|
|n|Hitachi Incident Response Team|
|o|Hitachi|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - IIJ Group Security Coordination Team]]>>/%
|1|[[✔|https://first.org/members/teams/iij-sect]]|
|aJP|Membre|
|n|IIJ-SECT|
|f|🇯🇵|
|n|IIJ Group Security Coordination Team|
|o|IIJ Group|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Intelli-CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/il-csirt]]|
|aJP|Membre|
|n|IL-CSIRT|
|f|🇯🇵|
|n|Intelli-CSIRT|
|o|Intelli|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - IPA-CERT]]>>/%
|1|[[✔|https://first.org/members/teams/ipa-cert]]|
|aJP|Membre|
|n|IPA-CERT|
|f|🇯🇵|
|n|IPA-CERT|
|o|IPA|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - JPCERT/CC]]>>/%
|1|[[✔|https://first.org/members/teams/jpcert-cc]]|
|aJP|Membre|
|m|+++[🖂] info[@]jpcert.or.jp === |
|f|🇯🇵|
|h|+++[☎] +81 90 98209360 === |
|g|✔|
|n|JPCERT/CC ((*(JPCERT Coordination Center)))|
|99|-|
|o|JPCERT|
|t|+++[🕾] +81 3 62718901 === |
|7|-|
|d|JP|
|y|Institutionnel|
|u|[[⇗|https://jpcert.or.jp]]|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Kakaku.com SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/kkcsirt]]|
|aJP|Membre|
|n|KKCSIRT|
|f|🇯🇵|
|n|Kakaku.com Security Incident Response Team|
|o|Kakaku.com|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - KDDI CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/kddi-csirt]]|
|aJP|Membre|
|n|KDDI-CSIRT|
|f|🇯🇵|
|n|KDDI Computer Security Incident Response Team|
|o|KDDI|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - KONICA MINOLTA PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/konica_minolta_psirt]]|
|aJP|Membre|
|d|JP|
|f|🇯🇵|
|n|KONICA MINOLTA PSIRT|
|o|KONICA MINOLTA|
|y|Produit|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - LAC Advanced Corporate Emergency Readiness Team]]>>/%
|1|[[✔|https://first.org/members/teams/lacert]]|
|aJP|Membre|
|n|LACERT|
|f|🇯🇵|
|n|LAC Advanced Corporate Emergency Readiness Team|
|o|LAC Advanced Corporate Emergency Readiness Team|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - LY Corporation CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/ly_corporation_csirt]]|
|aJP|Membre|
|n|LY Corporation CSIRT|
|f|🇯🇵|
|n|LY Corporation Computer Security Incident Response Team|
|o|LY Corporation|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Mitsubishi Electric PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/melco_psirt]]|
|aJP|[[✔|https://www.nca.gr.jp/member/melco-csirt.html]]|
|d|JP|
|f|🇯🇵|
|m|+++[🖂] melco-psirt[@]mj.mitsubishielectric[.]co[.]jp === |
|n|Mitsubishi Electric PSIRT ((*(MELCO PSIRT)))|
|o|Mitsubishi Electric|
|u|[[⇗|https://www.mitsubishielectric.com/en/psirt/index.html]]|
|y|Produit|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Mitsubishi UFJ Financial Group - CERT]]>>/%
|1|[[✔|https://first.org/members/teams/mufg-cert]]|
|aJP|Membre|
|n|MUFG-CERT|
|f|🇯🇵|
|n|Mitsubishi UFJ Financial Group - CERT|
|o|Mitsubishi UFJ Financial Group - CERT|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Mitsui Bussan Secure Directions SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/mbsd-sirt]]|
|aJP|Membre|
|n|MBSD-SIRT|
|f|🇯🇵|
|n|Mitsui Bussan Secure Directions Security Incident Response Team|
|o|Mitsui Bussan Secure Directions|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - National Center of Incident Readiness and Strategy for Cybersecurity]]>>/%
|1|[[✔|https://first.org/members/teams/nisc]]|
|n|NISC|
|f|🇯🇵|
|n|National Center of Incident Readiness and Strategy for Cybersecurity|
|o|National Center of Incident Readiness and Strategy for Cybersecurity|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - NEC CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/nec-csirt]]|
|aJP|Membre|
|n|NEC-CSIRT|
|f|🇯🇵|
|n|NEC Computer Security Incident Response Team|
|o|NEC|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - NISC]]>>/%
|1|x|
|f|🇯🇵|
|g|✔|
|n|NISC ((*(National Center of Incident Readiness and Strategy for Cybersecurity)))|
|99|-|
|7|-|
|d|JP|
|y|Institutionnel|
|u|[[⇗|https://nisc.go.jp]]|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - NRI SecureTechnologies CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/ncsirt]]|
|aJP|Membre|
|n|NCSIRT|
|f|🇯🇵|
|n|NRI SecureTechnologies Computer Security Incident Response Team|
|o|NRI SecureTechnologies|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - NTT Communications SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/ntt_com-sirt]]|
|aJP|Membre|
|n|NTT Com-SIRT|
|f|🇯🇵|
|n|NTT Communications Security Incident Response Team|
|o|NTT Communications|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - NTT Computer Security Incident Response and Readiness Coordination Team]]>>/%
|1|[[✔|https://first.org/members/teams/ntt-cert]]|
|aJP|Membre|
|n|NTT-CERT|
|f|🇯🇵|
|n|NTT Computer Security Incident Response and Readiness Coordination Team|
|o|NTT|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - NTTDATA-CERT]]>>/%
|1|[[✔|https://first.org/members/teams/nttdata-cert]]|
|aJP|Membre|
|n|NTTDATA-CERT|
|f|🇯🇵|
|n|NTTDATA-CERT|
|o|NTTDATA|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Panasonic PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/panasonic_psirt]]|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/panasonic-psirt.html]]|
|aJP|Membre|
|c|~~2013~~|
|d|JP|
|f|🇯🇵|
|n|Panasonic PSIRT|
|o|Panasonic|
|y|Produit|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Professionals of Intelligence-based Risk Assessment and Total Emergency Services]]>>/%
|1|[[✔|https://first.org/members/teams/pirates]]|
|n|PIRATES|
|f|🇯🇵|
|n|Professionals of Intelligence-based Risk Assessment and Total Emergency Services|
|o|Professionals of Intelligence-based Risk Assessment and Total Emergency Services|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - QTnet CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/qtnet_csirt]]|
|aJP|Membre|
|n|QTnet CSIRT|
|f|🇯🇵|
|n|QTnet Computer Security Incident Response Team|
|o|QTnet|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Rakuten Fintech-CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/rft-csirt]]|
|aJP|Membre|
|n|RFT-CSIRT|
|f|🇯🇵|
|n|Rakuten Fintech-CSIRT|
|o|Rakuten Fintech|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Rakuten Mobile-CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/rm-csirt]]|
|aJP|Membre|
|n|RM-CSIRT|
|f|🇯🇵|
|n|Rakuten Mobile-CSIRT|
|o|Rakuten Mobile|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Rakuten-CERT]]>>/%
|1|[[✔|https://first.org/members/teams/rakuten-cert]]|
|aJP|Membre|
|n|Rakuten-CERT|
|f|🇯🇵|
|n|Rakuten-CERT|
|o|Rakuten|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Recruit Cyber SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/recruit-csirt]]|
|aJP|Membre|
|n|Recruit-CSIRT|
|f|🇯🇵|
|n|Recruit Cyber Security Incident Response Team|
|o|Recruit|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Ricoh PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/ricoh_psirt]]|
|aJP|Membre|
|d|JP|
|f|🇯🇵|
|n|Ricoh Product Security Incident Response Team|
|o|Ricoh|
|y|Produit|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - SECOM CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/secom-csirt]]|
|aJP|Membre|
|n|SECOM-CSIRT|
|f|🇯🇵|
|n|SECOM Computer Security Incident Response Team|
|o|SECOM|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - SoftBank CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/softbank_csirt]]|
|aJP|Membre|
|n|SoftBank CSIRT|
|f|🇯🇵|
|n|SoftBank Computer Security Incident Response Team|
|o|SoftBank|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Sony PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/sony_psirt]]|
|aJP|Membre|
|d|JP|
|f|🇯🇵|
|n|Sony Product Security Incident Response Team|
|n|Sony PSIRT|
|o|Sony|
|y|Produit|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Sysmex CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/sysmex-csirt]]|
|aJP|Membre|
|n|Sysmex-CSIRT|
|f|🇯🇵|
|n|Sysmex Computer Security Incident Response Team|
|o|Sysmex|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - TEPCO SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/tepco-sirt]]|
|aJP|Membre|
|n|TEPCO-SIRT|
|f|🇯🇵|
|n|TEPCO Security Incident Response Team|
|o|TEPCO|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - Tokyo Denki University CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/tdu-csirt]]|
|aJP|Membre|
|n|TDU-CSIRT|
|f|🇯🇵|
|n|Tokyo Denki University CSIRT|
|o|Tokyo Denki University|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - JP - TOSHIBA SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/toshiba-sirt]]|
|aJP|Membre|
|n|TOSHIBA-SIRT|
|f|🇯🇵|
|n|TOSHIBA Security Incident Response Team|
|o|TOSHIBA|
|d|JP|
|z|as|
%/
<<tiddler f_IdIRT with: [[Liaison - JP - Mariko Miya]]>>/%
|1|[[Liaison|https://first.org/members/liaisons/mariko_miya]]|
|f|🇯🇵|
|n|Mariko Miya (JP) ((*(//ad personam//)))|
|o|Mariko Miya|
|d|JP|
|y|Personne|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - KG - CERT-KG]]>>/%
|d|KG|
|f|🇰🇬|
|z|as|
|n|CERT-KG|
|u|[[⇗|https://cert.kg]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - KG - CSC AIU]]>>/%
|d|KG|
|f|🇰🇬|
|n|CSC AIU ((*(Cybersecurity Center of Ala-Too International University)))|
|u|x|
|m|+++[🖂] oiccert-rep[@]alatoo[.]edu[.]kg === |
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - KG - CERT ICT KG]]>>/%
|d|KG|
|f|🇰🇬|
|z|as|
|n|CERT ICT KG ((*(Computer Emergency Response Team)))|
|u|x|
|m|-|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - KG - KG-CERT]]>>/%
|d|KZ|
|f|🇰🇿|
|f|🇰🇿|
|z|as|
|n|CERT-KG ((*(Computer Emergency Response Team of Kyrgyz Republic)))|
|u|[[⇗|cert.gov.kg]]|
|m|+++[🖂] cert[@]cert[.]gov[.]kg === |
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - KH - CamCERT]]>>/%
|d|KH|
|f|🇰🇭|
|z|as|
|n|CamCERT ((*(National Cambodia Computer Emergency Response Team)))|
|u|[[⇗|https://camcert.gov.kh]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - KI - CERT Kiribati]]>>/%
|d|KI|
|f|🇰🇮|
|z|as|
|n|CERT Kiribati|
|u|[[⇗|]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - KR - KN-CERT]]>>/%
|d|KR|
|f|🇰🇷|
|z|as|
|n|KN-CERT ((*(Korea National Computer Emergency Response Team)))|
|u|[[⇗|https://ncsc.go.kr]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - KR - KrCERT/CC]]>>/%
|d|KR|
|f|🇰🇷|
|z|as|
|n|KrCERT/CC ((*(KrCERT/CC)))|
|u|[[⇗|https://krcert.or.kr]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|[[Certified|https://trusted-introducer.org/directory/teams/krcert-cc.html]] ^^2024^^|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - KW - NCSC-KW]]>>/%
|d|KW|
|f|🇰🇼|
|z|as|
|n|NCSC-KW ((*(Kuwait National Cyber Security Center)))|
|u|[[⇗|https://citra.gov.kw]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - KZ - KZ-CERT]]>>/%
|d|KZ|
|f|🇰🇿|
|f|🇰🇿|
|z|as|
|n|KZ-CERT ((*(National Computer Emergency Response Team of Kazakhstan)))|
|u|[[⇗|https://cert.gov.kz]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|~~//(Accredited) ((*(Accreditation suspended)))//~~|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - KZ - CAICA]]>>/%
|d|KZ|
|f|🇰🇿|
|f|🇰🇿|
|z|as|
|n|CAICA ((*(Center for Analysis and Investigation of Cyber-Attacks)))|
|u|[[⇗|https://cert.kz]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - LA - LaoCERT]]>>/%
|d|LA|
|f|🇱🇦|
|z|as|
|n|LaoCERT|
|u|[[⇗|https://laocert.gov.la]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - LB - Lebanon CERT]]>>/%
|d|LB|
|f|🇱🇧|
|z|as|
|n|Lebanon CERT|
|u|[[⇗|https://lebanoncert.org]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - LK - Sri Lanka CERT/CC]]>>/%
|d|LK|
|f|🇱🇰|
|z|as|
|n|Sri Lanka CERT/CC ((*(Sri Lanka Computer Emergency Readiness Team|Coordination Center)))|
|u|[[⇗|https://cert.gov.lk]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - HK - GovCERT.HK]]>>/%
|d|HK|
|f|🇭🇰|
|z|as|
|n|GovCERT.HK ((*(Government Computer Emergency Response Team Hong Kong)))|
|u|[[⇗|https://govcert.gov.hk]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - HK - HKCERT]]>>/%
|d|HK|
|f|🇭🇰|
|z|as|
|n|HKCERT ((*(Hong Kong Computer Emergency Response Team Coordination Centre)))|
|u|[[⇗|https://hkcert.org]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - MM - mmCERT]]>>/%
|d|MM|
|f|🇲🇲|
|z|as|
|n|mmCERT|
|u|[[⇗|https://ncsc.gov.mm]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - MN - MN CERT/CC]]>>/%
|d|MN|
|f|🇲🇳|
|z|as|
|n|MN CERT/CC|
|u|[[⇗|https://mncert.org]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - MN - National CSIRT of Mongolia]]>>/%
|d|MN|
|f|🇲🇳|
|z|as|
|n|National CSIRT of Mongolia|
|u|[[⇗|https://ncsirt.gov.mn/]]|
|g|✔|
|y|Institutionnel|
|1|-|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - MO - MOCERT]]>>/%
|d|MO|
|f|🇲🇴|
|z|as|
|n|MOCERT ((*(Macau Computer Emergency Response Team - Coordination Centre)))|
|u|[[⇗|https://mocert.org]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - MY - Cybersecurity Malaysia]]>>/%
|d|MY|
|f|🇲🇾|
|o|Ministry of Communications and Multimedia Malaysia|
|z|as|
|n|Cybersecurity Malaysia|
|u|[[⇗|https://cybersecurity.my]]|
|m|+++[🖂] oiccert-rep[@]cybersecurity[.]my === |
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - MY - FNS]]>>/%
|d|MY|
|f|🇲🇾|
|z|as|
|n|FNS (M) Sdn. Bhd.|
|u|[[⇗|https://www.fnsmalaysia.com]]|
|g|-|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - MY - MyCERT]]>>/%
|d|MY|
|f|🇲🇾|
|z|as|
|n|MyCERT ((*(Malaysian Computer Emergency Response Team)))|
|u|[[⇗|https://cybersecurity.my]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - MY - UTeM]]>>/%
|d|MY|
|f|🇲🇾|
|z|as|
|n|UTeM ((*(Universiti Teknikal Malaysia Melaka)))|
|u|[[⇗|https://cybersecurity.my]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - NP - Nepal CERT]]>>/%
|d|NP|
|f|🇳🇵|
|z|as|
|n|Nepal CERT|
|u|[[⇗|https://nepalcert.org.np]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - OM - OCERT]]>>/%
|d|OM|
|f|🇴🇲|
|z|as|
|n|OCERT ((*(Oman National CERT)))|
|u|[[⇗|http://www.cert.gov.om]]|
|m|+++[🖂] ocert999[@]ita[.]gov[.]om === |
|g|✔|
|y|Institutionnel|
|1|[[✔|https://first.org/members/teams/ocert]]|
|7|-|
|99|✔|
|c|2009|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - PH - CERT-PH]]>>/%
|d|PH|
|f|🇵🇭|
|z|as|
|n|CERT-PH ((*(CERT-PH)))|
|u|[[⇗|https://dict.gov.ph]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - PK - NR3C]]>>/%
|d|PK|
|f|🇵🇰|
|o|FIA ((*(Federal Investigation Agency)))|
|z|as|
|n|PISA-CERT ((*(Pakistan Information Security Association)))|
|u|[[⇗|https://pisa.org.pk]]|
|m|+++[🖂] oiccert-team[@]pisa.org.pk === |
|g|-|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - PK - PISA-CERT]]>>/%
|d|PK|
|f|🇵🇰|
|o|FIA ((*(Federal Investigation Agency)))|
|z|as|
|n|NR3C ((*(National Response Centre for Cyber Crimes)))|
|u|[[⇗|https://nr3c.gov.pk]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - QA - Q-CERT]]>>/%
|MaJ|O3K|
|d|QA|
|f|🇶🇦|
|z|as|
|n|Q-CERT ((*(Qatar CERT)))|
|u|[[⇗|https://qcert.org]]|
|Emal|oiccert-rep[@]qcert.org ; oiccert-team[@]qcert.org|
|g|✔|
|y|Institutionnel|
|1|[[✔|https://first.org/members/teams/q-cert]]|
|7|⨯|
|99|✔|
|c|2005|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - RU - RU-CERT]]>>/%
|d|RU|
|f|🇷🇺|
|z|as|
|n|RU-CERT ((*(Computer Security Incident Response Team RU-CERT)))|
|u|[[⇗|https://cert.ru]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|~~//(Accredited) ((*(Accreditation suspended)))//~~|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - SA - Saudi CERT]]>>/%
|d|SA|
|f|🇸🇦|
|o|NCA ((*(National Cybersecurity Authority)))|
|z|as|
|n|Saudi CERT ((*(Saudi CERT)))|
|u|[[⇗|https://cert.gov.sa]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/saudi-cert.html]]|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - SG - SingCERT]]>>/%
|d|SG|
|f|🇸🇬|
|z|as|
|n|SingCERT ((*(Singapore Cyber Emergency Response Team)))|
|u|[[⇗|https://csa.gov.sg]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - SG - CERT-GIB]]>>/%
|d|SG|
|f|🇸🇬|
|z|as|
|n|SingCERT ((*(Singapore Cyber Emergency Response Team)))|
|u|[[⇗|https://www.group-ib.com/cert.html]]|
|m|+++[🖂] response[@]cert-gib.com === |
|g|-|
|1|x|
|7|-|
|99|✔|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - SY - ISC]]>>/%
|d|SY|
|f|🇸🇾|
|z|as|
|n|Information Security Center ((*(ISC / National Agency for Network Services)))|
|u|[[⇗|https://nans.gov.sy]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - TH - ThaiCERT (NCSA)]]>>/%
|d|TH|
|f|🇹🇭|
|z|as|
|n|ThaiCERT ((*(NCSA)|
|u|[[⇗|https://cert.gov.to]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - TR - TR-CERT]]>>/%
|d|TR|
|f|🇹🇷|
|z|as|
|n|TR-CERT ((*(National Cyber Security Incident Response Team)))|
|u|[[⇗|https://usom.gov.tr]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - TW - TWNCERT]]>>/%
|d|TW|
|f|🇹🇼|
|z|as|
|n|TWNCERT ((*(Taiwan National Computer Emergency Response Team)))|
|u|[[⇗|https://twncert.org.tw]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - UZ - UZCERT]]>>/%
|d|UZ|
|f|🇺🇿|
|z|as|
|n|UZCERT ((*(Uzbekistan Computer Emergency Response Team)))|
|u|[[⇗|https://uzcert.uz]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - VN - VNCERT]]>>/%
|d|VN|
|f|🇻🇳|
|z|as|
|n|VNCERT ((*(VNCERT/CC)))|
|u|[[⇗|https://vncert.vn]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|-|
|99|-|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AU - AusCERT]]>>/%
|1|[[✔|https://first.org/members/teams/auscert]]|
|1|x|
|f|🇦🇺|
|g|✔|
|n|AusCERT ((*(Australian Cyber Emergency Response Team)))|
|7|-|
|d|AU|
|y|Institutionnel|
|u|[[⇗|https://auscert.org.au]]|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AU - ACSC]]>>/%
|1|[[✔|https://first.org/members/teams/australian_cyber_security_centre]]|
|f|🇦🇺|
|g|✔|
|n|ACSC ((*(Australian Cyber Security Centre)))|
|49|✔|
|7|-|
|d|AU|
|y|Institutionnel|
|u|[[⇗|https://defence.gov.au]]|
|z|oc|
|z|as|
%/
<<tiddler f_IdIRT with: [[CSIRT - AU - Deloitte Australia Cyber Intelligence Centre]]>>/%
|1|[[✔|https://first.org/members/teams/deloitte-cicau]]|
|n|Deloitte-CICAU]]|
|f|🇦🇺|
|n|Deloitte Australia Cyber Intelligence Centre|
|o|Deloitte Australia Cyber Intelligence Centre|
|d|AU|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - AU - Monash University Cyber SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/mon-csirt]]|
|n|MON-CSIRT]]|
|f|🇦🇺|
|n|Monash University Cyber Security Incident Response Team|
|o|Monash University|
|d|AU|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - AU - Telstra CERT]]>>/%
|1|[[✔|https://first.org/members/teams/telstra_t-cert]]|
|n|Telstra T-CERT]]|
|f|🇦🇺|
|n|Telstra Computer Emergency Response Team|
|o|Telstra Computer Emergency Response Team|
|d|AU|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - CK - Ministry of Communications (CK)]]>>/%
|d|CK|
|f|🇨🇰|
|z|oc|
|n|^^//((Îles Cook(Cook Islands))) : ((Office of the Prime Minister(Information, Communications and Technology Division))) (?)//^^|
|u|[[⇗|https://www.pmoffice.gov.ck/]]|
|g|-|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - FJ - Ministry of Communications (FJ)]]>>/%
|d|FJ|
|f|🇫🇯|
|z|oc|
|n|^^//((Fidji(Fiji|))) : ((Ministry of Communications(Department of Information, Digital Government Transformation Office, Department of Communication, and the Information Technology and Computing Services))) (?)//^^|
|u|[[⇗|http://www.communications.gov.fj/]]|
|g|-|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - KI - Ministry of Information (KI)]]>>/%
|d|KI|
|f|🇰🇮|
|z|oc|
|n|^^//((Kiribati(Kiribati))) : ((MICTTD(Ministry of Information, Communication, Transport and Tourism Development))) (?)//^^|
|u|[[⇗|https://www.micttd.gov.ki/]]|
|g|-|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - MH - Ministry of Justice (MH)]]>>/%
|d|MH|
|f|🇲🇭|
|z|oc|
|n|^^//((Îles Marshall(Marshall Islands))) : ((Ministry of Justice(Marshall Islands Police Department))) (?)//^^|
|u|x|
|g|-|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - NR - The Department of Telecommunications (NR)]]>>/%
|d|NR|
|f|🇳🇷|
|z|oc|
|n|^^//((Nauru(Nauru))) : ((Ministry of Justice(Regulatory Directorate and the Information, Communications Technology Department))) (?)//^^|
|u|[[⇗|http://naurugov.nr/government/departments/department-of-telecommunications.aspx]]|
|g|-|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - NU - Telecom Niue (NU)]]>>/%
|d|NU|
|f|🇳🇺|
|z|oc|
|n|^^//((Nioué(Niue))) : Telecom Niue Ltd (?)//^^|
|u|[[⇗|http://telecomniue.com/]]|
|g|-|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - NZ - CERT NZ]]>>/%
|d|NZ|
|f|🇳🇿|
|z|oc|
|n|CERT NZ ((*(CERT NZ)))|
|u|[[⇗|https://ops.cert.govt.nz]]|
|g|✔|
|y|Institutionnel|
|1|✔|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - NZ - NCSC NZ]]>>/%
|d|NZ|
|f|🇳🇿|
|z|oc|
|n|NCSC NZ ((*(New Zealand National Cyber Security Centre)))|
|u|[[⇗|https://ncsc.govt.nz]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - PG - NCSC (PG)]]>>/%
|d|PG|
|f|🇵🇬|
|z|oc|
|n|^^//((Papouasie-Nouvelle-Guinée(Papua New Guinea))) : ((Papua New Guinea NCSC (National Cyber Security Centre / Department of Information and Communications Technology)))// (?)|
|u|[[⇗|https://www.ncsc.gov.pg/]] [[⇗|https://ict.gov.pg/]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - PG - NICTA (PG)]]>>/%
|d|PG|
|f|🇵🇬|
|z|oc|
|n|^^//((Papouasie-Nouvelle-Guinée(Papua New Guinea))) : ((NICTA(National ICT Authority)))// (?)|
|u|[[⇗|https://www.nicta.gov.pg/]]|
|g|-|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - PG - PNG CERT]]>>/%
|d|PG|
|f|🇵🇬|
|z|oc|
|n|PNG CERT|
|u|[[⇗|https://pngcert.org.pg]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - PW - Bureau of Public Safety (PW)]]>>/%
|d|PW|
|f|🇵🇼|
|z|oc|
|n|^^//((Palaos(Palau))) : Bureau of Public Safety (?)//^^|
|u|[[⇗|https://www.palaugov.pw/]]|
|g|-|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - SB - SIG ICT Services (SB)]]>>/%
|d|SB|
|f|🇸🇧|
|z|oc|
|n|^^//((Îles Salomon(Solomon Islands))) : ((Ministry of Finance and Treasury(SIG ICT Services))) (?)//^^|
|u|[[⇗|https://solomons.gov.sb/ministry-of-finance-and-treasury/sig-ict-services]]|
|g|-|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - TK - TELETOK (TK)]]>>/%
|d|TK|
|f|🇹🇰|
|z|oc|
|n|^^//((Tokélaou(Tokelau))) : ((TELETOK(Telecommunication Tokelau Corporation))) (?)//^^|
|u|[[⇗|https://www.teletokco.tk/]]|
|g|-|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - TO - CERT Tonga]]>>/%
|d|TO|
|f|🇹🇴|
|z|oc|
|n|CERT Tonga ((*(Tonga National CERT)))|
|u|[[⇗|https://cert.to]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - TV - Ministry of Justice (TV)]]>>/%
|d|TV|
|f|🇹🇻|
|z|oc|
|n|^^//((Tuvalu(Tuvalu))) : ((Ministry of Justice(Department of ICT))) (?)//^^|
|u|x|
|g|-|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - VU - CERT VU]]>>/%
|d|VU|
|f|🇻🇺|
|z|oc|
|n|CERT VU|
|u|[[⇗|https://cert.gov.vu]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - WS - SamCERT]]>>/%
|d|WS|
|f|🇼🇸|
|z|oc|
|n|SamCERT ((*(Ministry of Communications and Information Technology)))|
|u|[[⇗|https://mcit.gov.ws]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|49|✔|
|z|oc|
%/
<<tiddler f_IdIRT with: [[CSIRT - CA - CCCS]]>>/%
|1|✔|
|49|x|
|7|-|
|d|CA|
|f|🇨🇦|
|g|✔|
|G|[[⇗|https://github.com/CybercentreCanada|
|n|CCCS ((*(Canadian Centre for Cyber Security)))|
|p|0x08C1876E|
|t|+++[🕾] +1.833.CYBER88 === |
|u|[[⇗|https://cyber.gc.ca]]|
|y|Institutionnel| / National|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - CERT/CC]]>>/%
|1|✔|
|49|x|
|7|-|
|c|1988|
|d|US|
|f|🇺🇸|
|g|✔|
|h|+++[☎] +1.412.337.1560 === |
|n|CERT/CC ((*(CERT Coordination Center)))|
|t|+++[🕾] +1.412.268.3945 === |
|u|[[⇗|https://cert.org]]|
|y|Institutionnel|
|z|na|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - US-CERT]]>>/%
|1|x|
|49|x|
|7|-|
|c|2003|
|d|US|
|f|🇺🇸|
|g|✔|
|G|[[⇗|https://github.com/cisagov|
|h|+++[☎] +1-703-235-8832 === |
|n|US-CERT|
|o|DHS ((*(Department of Homeland Security))) / CISA ((*(Cybersecurity and Infrastructure Security Agency)))|
|p|0xE33AF836|
|t|+++[🕾] +1-888-282-0870 === |
|u|[[⇗|https://us-cert.gov]]|
|y|National|
|Z|https://www.cisa.gov/resources-tools/resources/secure-by-design |
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Acuity Brands PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/acuity_brands_psirt]]|
|d|US|
|f|🇺🇸|
|n|Acuity Brands PSIRT|
|o|Acuity Brands|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Airbnb DART CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/airbnb_dart_csirt]]|
|f|🇺🇸|
|n|Airbnb DART CSIRT|
|o|Airbnb DART|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Amazon SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/amazon_sirt]]|
|f|🇺🇸|
|n|Amazon Security Incident Response Team|
|o|Amazon|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - AMD PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/amd_psirt]]|
|d|US|
|f|🇺🇸|
|n|AMD PSIRT|
|o|AMD|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Apple Computer]]>>/%
|1|[[✔|https://first.org/members/teams/apple]]|
|f|🇺🇸|
|n|Apple Computer|
|o|Apple Computer|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Aptiv PSOC]]>>/%
|1|[[✔|https://first.org/members/teams/aptiv_psirt]]|
|f|🇺🇸|
|n|Aptiv PSOC|
|o|Aptiv PSOC|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Auth0 Detection and Response team]]>>/%
|1|[[✔|https://first.org/members/teams/auth0_detection_and_response_team]]|
|f|🇺🇸|
|n|Auth0 Detection and Response team|
|o|Auth0 Detection and Response team|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Bank of America Cyber Threat Defence]]>>/%
|1|[[✔|https://first.org/members/teams/bank_of_america_cyber_threat_defence]]|
|n|Bank of America Cyber Threat Defence|
|f|🇺🇸|
|o|Bank of America Cyber Threat Defence|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Binary Defense]]>>/%
|1|[[✔|https://first.org/members/teams/binary_defense]]|
|f|🇺🇸|
|n|Binary Defense|
|o|Binary Defense|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Booz Allen Hamilton Cyber IRT]]>>/%
|1|[[✔|https://first.org/members/teams/bah_cirt]]|
|n|BAH CIRT|
|f|🇺🇸|
|n|BAH CIRT ((*(Booz Allen Hamilton Cyber Incident Response Team)))|
|o|Booz Allen Hamilton Cyber|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Box SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/box_sirt]]|
|f|🇺🇸|
|n|Box Security Incident Response Team|
|o|Box|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Bridgewater CIRT]]>>/%
|1|[[✔|https://first.org/members/teams/bridgewater_cirt]]|
|f|🇺🇸|
|n|Bridgewater CIRT|
|o|Bridgewater CIRT|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Brocade SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/brcdsirt]]|
|f|🇺🇸|
|n|BRD SIRT ((*(Brocade Security Incident Response Team)))|
|o|Brocade|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - CERT CC]]>>/%
|1|[[✔|https://first.org/members/teams/cert-cc]]|
|f|🇺🇸|
|n|CERT/CC ((*(CERT Coordination Center)))|
|o|CERT Coordination Center|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Cisco Systems CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/cisco_systems]]|
|f|🇺🇸|
|n|Cisco Systems CSIRT|
|o|Cisco Systems|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Citi Global Cyber Security]]>>/%
|1|[[✔|https://first.org/members/teams/citi-csfc]]|
|f|🇺🇸|
|n|Citi Global Cyber Security|
|o|Citi Global Cyber Security|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - CLEAR CIRT]]>>/%
|1|[[✔|https://first.org/members/teams/clear_cirt]]|
|f|🇺🇸|
|n|CLEAR CIRT|
|o|CLEAR CIRT|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Cloud Software Group Cyber SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/cloud_software_group_csirt]]|
|f|🇺🇸|
|n|Cloud Software Group Cyber Security Incident Response Team|
|o|Cloud Software Group|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Comcast Cybersecurity Operations Center]]>>/%
|1|[[✔|https://first.org/members/teams/comcast]]|
|f|🇺🇸|
|n|Comcast Cybersecurity Operations Center|
|o|Comcast Cybersecurity Operations Center|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - CrowdStrike SIRT (CSIRT)]]>>/%
|1|[[✔|https://first.org/members/teams/crowdstrike]]|
|f|🇺🇸|
|n|CrowdStrike CSIRT|
|o|CrowdStrike|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Cyber Threat Fusion Center Centene CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/cyber_threat_fusion_center_centene_csirt]]|
|f|🇺🇸|
|n|Cyber Threat Fusion Center Centene CSIRT|
|o|Cyber Threat Fusion Center Centene|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Cybersecurity and Infrastructure Security Agency]]>>/%
|1|[[✔|https://first.org/members/teams/cisa]]|
|f|🇺🇸|
|n|Cybersecurity and Infrastructure Security Agency|
|o|Cybersecurity and Infrastructure Security Agency|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Dell PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/dell_psirt]]|
|d|US|
|f|🇺🇸|
|n|Dell PSIRT|
|o|Dell|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Deloitte Cyber Threat Intelligence]]>>/%
|1|[[✔|https://first.org/members/teams/deloitte_global]]|
|f|🇺🇸|
|n|Deloitte Cyber Threat Intelligence|
|o|Deloitte Global|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - DePaul IRT]]>>/%
|1|[[✔|https://first.org/members/teams/dirt]]|
|f|🇺🇸|
|n|DePaul Incident Response Team ((*(DIRT)))|
|o|DePaul|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Duke University and Duke Health]]>>/%
|1|[[✔|https://first.org/members/teams/duke]]|
|f|🇺🇸|
|n|Duke University and Duke Health|
|o|Duke University and Duke Health|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Ernst & Young LLP]]>>/%
|1|[[✔|https://first.org/members/teams/ey]]|
|f|🇺🇸|
|n|Ernst & Young LLP|
|o|Ernst & Young LLP|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Facebook IRT]]>>/%
|1|[[✔|https://first.org/members/teams/idr-ir]]|
|f|🇺🇸|
|n|IDR-IR ((*(Facebook Incident Response Team)))|
|o|Facebook|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Fifth Third Detection Analysis and Response Team]]>>/%
|1|[[✔|https://first.org/members/teams/fifth_third_dart]]|
|n|Fifth Third DART|
|f|🇺🇸|
|n|Fifth Third Detection Analysis and Response Team|
|o|Fifth Third Detection Analysis and Response Team|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Forcepoint PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/fpsirt]]|
|d|US|
|f|🇺🇸|
|n|FPSIRT ((*(Forcepoint PSIRT)))|
|o|Forcepoint|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - General Dynamics]]>>/%
|1|[[✔|https://first.org/members/teams/general_dynamics]]|
|f|🇺🇸|
|n|General Dynamics|
|o|General Dynamics|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - General Dynamics - Mission Systems]]>>/%
|1|[[✔|https://first.org/members/teams/gd-ms]]|
|f|🇺🇸|
|n|General Dynamics - Mission Systems ((*(GD-MS)))|
|o|General Dynamics|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - GitHub]]>>/%
|1|[[✔|https://first.org/members/teams/github]]|
|f|🇺🇸|
|n|GitHub|
|o|GitHub|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Google Information Security Team]]>>/%
|1|[[✔|https://first.org/members/teams/gist]]|
|f|🇺🇸|
|n|GIST ((*(Google Information Security Team)))|
|o|Google Information Security Team|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - GoTo CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/goto_csirt]]|
|f|🇺🇸|
|n|GoTo CSIRT|
|o|GoTo|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Health-ISAC Threat Operations Center]]>>/%
|1|[[✔|https://first.org/members/teams/health-isac]]|
|f|🇺🇸|
|n|Health-ISAC Threat Operations Center|
|o|Health-ISAC|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Hewlett Packard Enterprise (HPE) PSRT]]>>/%
|1|[[✔|https://first.org/members/teams/hewlett_packard_enterprise-hpe-psrt]]|
|f|🇺🇸|
|n|Hewlett Packard Enterprise (HPE) PSRT|
|o|Hewlett Packard Enterprise (HPE)|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - HP Inc. Product Security Response Team]]>>/%
|1|[[✔|https://first.org/members/teams/hp_inc-psrt]]|
|f|🇺🇸|
|n|HP Inc. Product Security Response Team|
|o|HP Inc.|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Human CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/human_csirt]]|
|f|🇺🇸|
|n|Human CSIRT|
|o|Human|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - IBM]]>>/%
|1|[[✔|https://first.org/members/teams/ibm]]|
|f|🇺🇸|
|n|IBM|
|o|IBM|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Infoblox PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/infoblox]]|
|d|US|
|f|🇺🇸|
|n|Infoblox PSIRT|
|o|Infoblox|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Informatica Security Incident Reaponse Team]]>>/%
|1|[[✔|https://first.org/members/teams/infa-sirt]]|
|f|🇺🇸|
|n|INFA-SIRT ((*(Informatica Security Incident Reaponse Team))|
|o|Informatica Security Incident Reaponse Team|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Information Technology Information Sharing and Analysis Center]]>>/%
|1|[[✔|https://first.org/members/teams/it-isac]]|
|f|🇺🇸|
|n|IT-ISAC ((*(Information Technology Information Sharing and Analysis Center)))|
|o|Information Technology ISAC|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Intel FIRST Team]]>>/%
|1|[[✔|https://first.org/members/teams/intel_first_team]]|
|f|🇺🇸|
|n|Intel FIRST Team|
|o|Intel|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Internet Corporation for Assigned Names and Numbers - CIRT]]>>/%
|1|[[✔|https://first.org/members/teams/icann_cirt]]|
|f|🇺🇸|
|n|ICANN CIRT ((*(Internet Corporation for Assigned Names and Numbers - Computer Incident Response Team)))|
|o|Internet Corporation for Assigned Names and Numbers -|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - InterSystems Security Architecture and Engineering]]>>/%
|1|[[✔|https://first.org/members/teams/intersystems]]|
|f|🇺🇸|
|n|InterSystems Security Architecture and Engineering|
|o|InterSystems|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Johnson Controls PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/johnson_controls_psirt]]|
|d|US|
|f|🇺🇸|
|n|Johnson Controls PSIRT|
|o|Johnson Controls|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - JPMorgan Chase Global Cyber Security]]>>/%
|1|[[✔|https://first.org/members/teams/jpmc-gcs]]|
|f|🇺🇸|
|n|JPMorgan Chase Global Cyber Security|
|o|JPMorgan Chase|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Juniper Networks SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/juniper_sirt]]|
|f|🇺🇸|
|n|Juniper Networks Security Incident Response Team|
|o|Juniper Networks|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - LBNL]]>>/%
|1|[[✔|https://first.org/members/teams/lawrence_berkeley_national_lab]]|
|f|🇺🇸|
|n|Lawrence Berkeley National Lab|
|o|LBNL|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Leidos - IRT]]>>/%
|1|[[✔|https://first.org/members/teams/leidos-irt]]|
|n|Leidos-IRT|
|f|🇺🇸|
|n|Leidos - Incident Response Team|
|o|Leidos -|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Lenovo PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/lenovo_psirt]]|
|d|US|
|f|🇺🇸|
|n|Lenovo PSIRT|
|o|Lenovo|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - LinkedIn CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/linkedin_seek_team]]|
|n|LinkedIn SEEK Team|
|f|🇺🇸|
|n|LinkedIn Computer Security Incident Response Team|
|o|LinkedIn|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Lockheed Martin CIRT]]>>/%
|1|[[✔|https://first.org/members/teams/lm-cirt]]|
|n|LM-CIRT|
|f|🇺🇸|
|n|Lockheed Martin Computer Incident Response Team|
|o|Lockheed Martin|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Mandiant]]>>/%
|1|[[✔|https://first.org/members/teams/mandiant_security]]|
|n|Mandiant Security|
|f|🇺🇸|
|n|Mandiant|
|o|Mandiant|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Microsoft Security First.org Team]]>>/%
|1|[[✔|https://first.org/members/teams/microsoft_security_first-org_team]]|
|n|Microsoft Security First.org Team|
|f|🇺🇸|
|n|Microsoft Security First.org Team|
|o|Microsoft Security First.org Team|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Morgan Stanley Cyber IRT]]>>/%
|1|[[✔|https://first.org/members/teams/morgan_stanley]]|
|n|Morgan Stanley|
|f|🇺🇸|
|n|Morgan Stanley Cyber Incident Response Team|
|o|Morgan Stanley Cyber|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Navy Federal Credit Union Cybersecurity Operations Center]]>>/%
|1|[[✔|https://first.org/members/teams/nfcu-csoc]]|
|n|NFCU-CSOC|
|f|🇺🇸|
|n|Navy Federal Credit Union Cybersecurity Operations Center|
|o|Navy Federal Credit Union Cybersecurity Operations Center|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - NBCU Cyber Defense]]>>/%
|1|[[✔|https://first.org/members/teams/nbcu_cyber_defense]]|
|n|NBCU Cyber Defense|
|f|🇺🇸|
|n|NBCU Cyber Defense|
|o|NBCU Cyber Defense|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - NetApp Security Incident Response]]>>/%
|1|[[✔|https://first.org/members/teams/netapp_sirt]]|
|n|NetApp SIRT|
|f|🇺🇸|
|n|NetApp Security Incident Response|
|o|NetApp Security Incident Response|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Netflix SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/netflix_sirt]]|
|n|Netflix SIRT|
|f|🇺🇸|
|n|Netflix Security Incident Response Team|
|o|Netflix|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - NETSCOUT ASERT]]>>/%
|1|[[✔|https://first.org/members/teams/netscout_asert]]|
|n|NETSCOUT ASERT|
|f|🇺🇸|
|n|NETSCOUT ASERT|
|o|NETSCOUT ASERT|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - NextEra Energy]]>>/%
|1|[[✔|https://first.org/members/teams/nextera]]|
|n|NextEra|
|f|🇺🇸|
|n|NextEra Energy|
|o|NextEra Energy|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - NIST IT Security]]>>/%
|1|[[✔|https://first.org/members/teams/nist]]|
|n|NIST|
|f|🇺🇸|
|n|NIST IT Security|
|o|NIST IT Security|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Northwestern University]]>>/%
|1|[[✔|https://first.org/members/teams/nu-cert]]|
|n|NU-CERT|
|f|🇺🇸|
|n|Northwestern University|
|o|Northwestern University|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - NTT Security Incident Response Services Team]]>>/%
|1|[[✔|https://first.org/members/teams/ntt_security_ir_services_team]]|
|n|NTT Security IR Services Team|
|f|🇺🇸|
|n|NTT Security Incident Response Services Team|
|o|NTT Security Incident Response Services Team|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - NVIDIA PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/nvidia_psirt]]|
|d|US|
|f|🇺🇸|
|n|NVIDIA PSIRT|
|o|NVIDIA|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Oracle Global Product Security]]>>/%
|1|[[✔|https://first.org/members/teams/oracle]]|
|n|Oracle|
|f|🇺🇸|
|n|Oracle Global Product Security|
|o|Oracle Global Product Security|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Packet Clearing House]]>>/%
|1|[[✔|https://first.org/members/teams/pch]]|
|n|PCH|
|f|🇺🇸|
|n|Packet Clearing House|
|o|Packet Clearing House|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - PAN PSIRT, CSIRT, and Unit42]]>>/%
|1|[[✔|https://first.org/members/teams/palo_alto_networks_security_incident_response_team]]|
|d|US|
|f|🇺🇸|
|n|PAN PSIRT, CSIRT, and Unit42|
|o|PAN,, and Unit42|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - PayPal Global SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/paypal_gsirt]]|
|n|PayPal GSIRT|
|f|🇺🇸|
|n|PayPal Global Security Incident Response Team|
|o|PayPal Global|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - PepsiCo Global Threat Assessment and Response Management]]>>/%
|1|[[✔|https://first.org/members/teams/pepsico]]|
|n|PepsiCo|
|f|🇺🇸|
|n|PepsiCo Global Threat Assessment and Response Management|
|o|PepsiCo Global Threat Assessment and Response Management|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Pure Storage Cybersecurity and Incdent Response]]>>/%
|1|[[✔|https://first.org/members/teams/pure_storage_cidr]]|
|n|Pure Storage CIDR|
|f|🇺🇸|
|n|Pure Storage Cybersecurity and Incdent Response|
|o|Pure Storage Cybersecurity and Incdent Response|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Raytheon CERT]]>>/%
|1|[[✔|https://first.org/members/teams/raycert]]|
|n|RayCERT|
|f|🇺🇸|
|n|Raytheon Computer Emergency Response Team|
|o|Raytheon Computer Emergency Response Team|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Recorded Future CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/recorded_future_csirt]]|
|n|Recorded Future CSIRT|
|f|🇺🇸|
|n|Recorded Future CSIRT|
|o|Recorded Future|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Red Hat Information SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/rh-isirt]]|
|n|RH-ISIRT|
|f|🇺🇸|
|n|Red Hat Information Security Incident Response Team|
|o|Red Hat Information|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Red Hat Product Security]]>>/%
|1|[[✔|https://first.org/members/teams/red_hat_product_security]]|
|n|Red Hat Product Security|
|f|🇺🇸|
|n|Red Hat Product Security|
|o|Red Hat Product Security|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Regeneron SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/rsirt]]|
|n|RSIRT|
|f|🇺🇸|
|n|Regeneron Security Incident Response Team|
|o|Regeneron|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Roblox Detection and Response Team (DART)]]>>/%
|1|[[✔|https://first.org/members/teams/roblox_detection_and_response_team-dart]]|
|n|Roblox Detection and Response Team (DART)|
|f|🇺🇸|
|n|Roblox Detection and Response Team (DART)|
|o|Roblox Detection and Response Team (DART)|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Salesforce.com CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/salesforce_csirt]]|
|n|Salesforce CSIRT|
|f|🇺🇸|
|n|Salesforce.com Computer Security Incident Response Team|
|o|Salesforce.com|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - SAS PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/sas_psirt]]|
|d|US|
|f|🇺🇸|
|n|SAS PSIRT|
|o|SAS|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Schneider Electric Corporate Product Cyber ERT]]>>/%
|1|[[✔|https://first.org/members/teams/schneider_electric_cpcert]]|
|n|Schneider Electric CPCERT|
|f|🇺🇸|
|n|Schneider Electric Corporate Product Cyber Emergency Response Team|
|o|Schneider Electric Corporate Product Cyber Emergency Response Team|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - SecureWorks CERT]]>>/%
|1|[[✔|https://first.org/members/teams/swrx_cert]]|
|n|SWRX CERT|
|f|🇺🇸|
|n|SecureWorks Computer Emergency Response Team|
|o|SecureWorks Computer Emergency Response Team|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Security CC]]>>/%
|1|[[✔|https://first.org/members/teams/adobe_psirt]]|
|d|US|
|f|🇺🇸|
|n|Adobe PSIRT|
|o|Security Coordination Center|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Security Intelligence Response Team]]>>/%
|1|[[✔|https://first.org/members/teams/capital_group]]|
|n|Capital Group|
|f|🇺🇸|
|n|Security Intelligence Response Team|
|o|Security Intelligence Response Team|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - ServiceNow PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/psirtnow]]|
|d|US|
|f|🇺🇸|
|n|ServiceNow PSIRT|
|o|ServiceNow|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Sonicwall PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/sw_psirt]]|
|d|US|
|f|🇺🇸|
|n|Sonicwall PSIRT|
|o|Sonicwall|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Target Cyber Fusion Center CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/target_cfc_csirt]]|
|n|Target CFC CSIRT|
|f|🇺🇸|
|n|Target Cyber Fusion Center Computer Security Incident Response Team|
|o|Target Cyber Fusion Center|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Team Cymru]]>>/%
|1|[[✔|https://first.org/members/teams/team_cymru]]|
|n|Team Cymru|
|f|🇺🇸|
|n|Team Cymru|
|o|Team Cymru|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Texas Instruments SOC]]>>/%
|1|[[✔|https://first.org/members/teams/tisoc]]|
|n|TISOC|
|f|🇺🇸|
|n|Texas Instruments Security Operations Center|
|o|Texas Instruments Security Operations Center|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - TIC DEFENSE USA CORPORATE SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/tic_defense_usa_corporate]]|
|n|TIC DEFENSE USA CORPORATE|
|f|🇺🇸|
|n|TIC DEFENSE USA CORPORATE Security Incident Response Team|
|o|TIC DEFENSE USA CORPORATE|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - U.S. Bank CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/usb-csirt]]|
|n|USB-CSIRT|
|f|🇺🇸|
|n|U.S. Bank Computer Security Incident Response Team|
|o|U.S. Bank|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - UB-First]]>>/%
|1|[[✔|https://first.org/members/teams/ub-first]]|
|n|UB-First|
|f|🇺🇸|
|n|UB-First|
|o|UB-First|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Uber Cyber Defense]]>>/%
|1|[[✔|https://first.org/members/teams/uber_cyber_defense]]|
|n|Uber Cyber Defense|
|f|🇺🇸|
|n|Uber Cyber Defense|
|o|Uber Cyber Defense|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - UNDP ISIRT]]>>/%
|1|[[✔|https://first.org/members/teams/undp_isirt]]|
|n|UNDP ISIRT|
|f|🇺🇸|
|n|UNDP ISIRT|
|o|UNDP ISIRT|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Unified Extensible Firmware Interface Forum Security Team]]>>/%
|1|[[✔|https://first.org/members/teams/uefi_usrt]]|
|n|UEFI USRT|
|f|🇺🇸|
|n|Unified Extensible Firmware Interface Forum Security Team|
|o|Unified Extensible Firmware Interface Forum Security Team|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - United Nations International Computing Centre]]>>/%
|1|[[✔|https://first.org/members/teams/unicc]]|
|n|UNICC|
|f|🇺🇸|
|n|United Nations International Computing Centre|
|o|United Nations International Computing Centre|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Vercara]]>>/%
|1|[[✔|https://first.org/members/teams/vercara]]|
|n|Vercara|
|f|🇺🇸|
|n|Vercara|
|o|Vercara|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Verisign]]>>/%
|1|[[✔|https://first.org/members/teams/verisign]]|
|n|VeriSign|
|f|🇺🇸|
|n|Verisign|
|o|Verisign|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Verizon Threat Management Center]]>>/%
|1|[[✔|https://first.org/members/teams/vz-tmc]]|
|n|VZ-TMC|
|f|🇺🇸|
|n|Verizon Threat Management Center|
|o|Verizon Threat Management Center|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - VMware Security Response Center]]>>/%
|1|[[✔|https://first.org/members/teams/vmware]]|
|n|VMware|
|f|🇺🇸|
|n|VMware Security Response Center|
|o|VMware Security Response Center|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Walmart SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/walmart_sirt]]|
|n|Walmart SIRT|
|f|🇺🇸|
|n|Walmart Security Incident Response Team|
|o|Walmart|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Wells Fargo SOC(SOC)]]>>/%
|1|[[✔|https://first.org/members/teams/wfc_soc]]|
|n|WFC SOC|
|f|🇺🇸|
|n|Wells Fargo Security Operation Center(SOC)|
|o|Wells Fargo Security Operation Center(SOC)|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Western Digital PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/western_digital_psirt]]|
|d|US|
|f|🇺🇸|
|n|Western Digital PSIRT|
|o|Western Digital|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Workday SIRT]]>>/%
|1|[[✔|https://first.org/members/teams/workday_sirt]]|
|n|Workday SIRT|
|f|🇺🇸|
|n|Workday Security Incident Response Team|
|o|Workday|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - World Bank Group Office of Information Security Incident Response]]>>/%
|1|[[✔|https://first.org/members/teams/world_bank]]|
|n|World Bank|
|f|🇺🇸|
|n|World Bank Group Office of Information Security Incident Response|
|o|World Bank Group Office of Information Security Incident Response|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Xerox Security Response Center]]>>/%
|1|[[✔|https://first.org/members/teams/xsrc]]|
|n|XSRC|
|f|🇺🇸|
|n|Xerox Security Response Center|
|o|Xerox Security Response Center|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Xylem PSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/xylem_psirt]]|
|d|US|
|f|🇺🇸|
|n|Xylem PSIRT|
|o|Xylem|
|y|Produit|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - US - Zendesk]]>>/%
|1|[[✔|https://first.org/members/teams/zendesk_csirt]]|
|n|Zendesk CSIRT|
|f|🇺🇸|
|n|Zendesk|
|o|Zendesk|
|d|US|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - BB - CIRT-BB]]>>/%
|1|x|
|49|x|
|7|-|
|d|BB|
|f|🇧🇧|
|g|✔|
|n|CIRT-BB|
|u|[[⇗|https://barbados.gov.bb]]|
|y|National|
|z|ca|
%/
<<tiddler f_IdIRT with: [[CSIRT - BS - CIRT-BS]]>>/%
|1|[[✔|https://first.org/members/teams/cirt-bs]]|
|49|x|
|7|-|
|41|✔|
|d|BS|
|f|🇧🇸|
|g|✔|
|n|CIRT-BS ((*(Computer Incident Response Team of The Bahamas)))|
|u|[[⇗|Web|https://moea.gov.bs]]|
|y|National|
|z|ca|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - CR - CSIRT-CR]]>>/%
|1|x|
|49|x|
|7|-|
|d|CR|
|f|🇨🇷|
|g|✔|
|n|CSIRT-CR|
|u|[[⇗|https://micitt.go.cr]]|
|y|National|
|z|ca|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - DO - CSIRT-Defensa]]>>/%
|d|DO|
|f|🇩🇴|
|g|✔|
|n|CSIRT-Defensa|
|u|[[⇗|https://csirt.c5iffaa.gob.do]]|
|y|Government|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - DO - ISOC-RD]]>>/%
|d|DO|
|f|🇩🇴|
|g|✔|
|n|ISOC-RD|
|u|[[⇗|http://dni.gob.do]]|
|y|Government|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - DO - CSIRT-RD]]>>/%
|49|x|
|7|-|
|d|DO|
|f|🇩🇴|
|g|✔|
|G|[[⇗|https://github.com/CERTUNLP/]]|
|n|CSIRT-RD ((*(Dominican Republic National CSIRT)))|
|u|[[⇗|https://csirt.gob.do]]/[[⇗|https://cncs.gob.do]]|
|y|Institutionnel|
|y|National|
|z|ca|
%/
<<tiddler f_IdIRT with: [[CSIRT - GD - Grenada National CSIRT]]>>/%
|d|GD|
|f|🇬🇩|
|z|na|
|n|Grenada National CSIRT|
|u|[[⇗|https://www.csirt.gov.gd]]|
|m|+++[🖂] csirtgnd[@]gov[.]gd|
|t|+++[🕾] +1.473.423.2478 === |
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|49|x|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - ]GT - CSIRT GT]>>/%
|1|x|
|49|x|
|7|-|
|d|GT|
|f|🇬🇹|
|g|✔|
|n|CSIRT GT ((*(Guatemala CSIRT)))|
|u|[[⇗|https://cert.gt]]/[[⇗|https://gtcert.mingob.gob.gt/]]|
|y|National|
|z|ca|
%/
<<tiddler f_IdIRT with: [[CSIRT - GT - CRIC_GT]]>>/%
|d|GT|
|f|🇬🇹|
|g|x|
|n|CRIC_GT|
|u|[[⇗|https://cric.mindef.mil.gt]]|
|y|Military|
|z|ca|
%/
<<tiddler f_IdIRT with: [[CSIRT - HN - CSIRT Honduras]]>>/%
|d|HN|
|f|🇭🇳|
|z|na|
|n|CSIRT Honduras|
|u|[[⇗|https://csirthonduras.org]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|49|x|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - JM - Ja-CIRT]]>>/%
|1|x|
|49|x|
|7|-|
|41|✔|
|d|JM|
|f|🇯🇲|
|g|✔|
|n|Ja-CIRT|
|u|[[⇗|https://www.cirt.gov.jm]]/[[⇗|https://opm.gov.jm]]|
|y|National|
|z|ca|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - MX - CSIRT-SEDENA-MX]]>>/%
|d|MX|
|f|🇲🇽|
|g|x|
|n|CSIRT-SEDENA-MX|
|u|[[⇗|https://www.gob.mx/sedena]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - MX - CSIRT-SEMAR-MX]]>>/%
|d|MX|
|f|🇲🇽|
|g|x|
|n|CSIRT-SEMAR-MX|
|u|[[⇗|https://www.gob.mx/semar]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - MX - CERT-MX]]>>/%
|1|✔|
|49|x|
|7|-|
|d|MX|
|f|🇲🇽|
|g|✔|
|n|CERT-MX ((*(Centro Nacional de Respuesta a Incidentes Cibernéticos de Mexico)))|
|u|[[⇗|https://www.gob.mx/sspc]]/[[⇗|https://gn.gob.mx]]|
|y|National|
|z|ca|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - MX - TIC DEFENSE-CERT]]>>/%
|d|MX|
|f|🇲🇽|
|z|na|
|n|TIC DEFENSE-CERT ((*(TIC DEFENSE-CERT)))|
|u|[[⇗|https://ticdefense.com]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|49|x|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - PA - CSIRT Panama]]>>/%
|1|x|
|49|x|
|7|-|
|d|PA|
|f|🇵🇦|
|g|✔|
|n|CSIRT Panama ((*(Computer Security Incident Response Team Panama)))|
|u|[[⇗|https://cert.pa]]|
|y|National|
|z|ca|
|z|NA|
%/
<<tiddler f_IdIRT with: [[CSIRT - TT - TTCSIRT]]>>/%
|1|x|
|49|x|
|7|-|
|d|TT|
|f|🇹🇹|
|g|✔|
|n|TTCSIRT ((*(Trinidad & Tobago Computer Security Incident Response)))|
|u|[[⇗|https://ttcsirt.gov.tt]]|
|y|National|
|z|ca|
%/
<<tiddler f_IdIRT with: [[CSIRT - AR - BA-CSIRT]]>>/%
|d|AR|
|f|🇦🇷|
|g|✔|
|n|BA-CSIRT|
|u|[[⇗|https://www.ba-csirt.gob.ar/]]|
|y|Government|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - AR - Banelco CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/csirtbanelco]]|
|n|CSIRTBANELCO]]|
|f|🇦🇷|
|n|Banelco Computer Security Incident Response Team|
|o|Banelco|
|d|AR|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - AR - Centro de CiberSeguridad del Gobierno de la Ciudad Autónoma de Buenos Aires]]>>/%
|1|[[✔|https://first.org/members/teams/ba-csirt]]|
|n|BA-CSIRT]]|
|f|🇦🇷|
|n|Centro de CiberSeguridad del Gobierno de la Ciudad Autónoma de Buenos Aires|
|o|Centro de CiberSeguridad del Gobierno de la Ciudad Autónoma de Buenos Aires|
|d|AR|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - AR - CERT.ar]]>>/%
|1|x|
|49|x|
|7|-|
|d|AR|
|f|🇦🇷|
|g|✔|
|G|[[⇗|https://github.com/cert-ar/]]/[[⇗|https://www.argentina.gob.ar/jefatura/innovacion-publica/direccion-nacional-ciberseguridad]]|
|n|CERT.ar ((*(CERT Argentina)))|
|u|[[⇗|https://cert.ar]]|
|y|National|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - AR - CSIRT BASE4 Security]]>>/%
|1|[[✔|https://first.org/members/teams/csirt_base4_security]]|
|n|CSIRT BASE4 Security]]|
|f|🇦🇷|
|n|CSIRT BASE4 Security|
|o|CSIRT BASE4 Security|
|d|AR|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - AR - CSIRT Cordoba]]>>/%
|d|AR|
|f|🇦🇷|
|g|✔|
|n|CSIRT Cordoba|
|u|[[⇗|https://csirtcordoba.ar/]]|
|y|Government|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - AR - CSIRT-MINSEG]]>>/%
|d|AR|
|f|🇦🇷|
|g|✔|
|n|CSIRT-MINSEG|
|u|[[⇗|https://csirt.minseg.gob.ar/]]|
|y|Government|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - AR - CSIRT-NQN]]>>/%
|d|AR|
|f|🇦🇷|
|g|✔|
|n|CSIRT-NQN|
|u|[[⇗|https://csirt-nqn.neuquen.gov.ar/]]|
|y|Government|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - AR - CSIRT-PBA]]>>/%
|d|AR|
|f|🇦🇷|
|g|✔|
|n|CSIRT-PBA|
|u|[[⇗|https://ciberseguridad.gba.gob.ar/]]|
|y|Government|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - AR - CERT-UNLP]]>>/%
|d|AR|
|f|🇦🇷|
|g|✔|
|G|[[⇗|https://github.com/CERTUNLP/]]|
|n|CERT-UNLP|
|u|[[⇗|https://www.cespi.unlp.edu.ar/certunlp/]]|
|y|Government|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - AR - YPF CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/csirt-ypf]]|
|n|CSIRT-YPF]]|
|f|🇦🇷|
|n|YPF COMPUTER SECURITY INCIDENT RESPONSE TEAM|
|o|YPF|
|d|AR|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - BO - CSIRT-Bolivia]]>>/%
|d|BO|
|f|🇧🇴|
|n|CSIRT-Bolivia|
|u|[[⇗|https://agetic.gob.bo]]/[[⇗|https://www.csirt.gob.bo/]]|
|g|✔|
|1|x|
|7|-|
|49|x|
|y|National|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - BR - CERT.br]]>>/%
|1|[[✔|https://first.org/members/teams/cert-br]]|
|49|x|
|7|[[Accredited|https://trusted-introducer.org/directory/teams/certbr.html]]|
|c|1997|
|d|BR|
|f|🇧🇷|
|g|✔|
|m|+++[🖂] cert[@]cert[.]br === |
|n|CERT.br ((*(Computer Emergency Response Team Brazil)))|
|p|0xBE634C8F|
|t|+++[🕾] +55 11 55093548 === |
|u|[[⇗|https://cert.br]]|
|y|National|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - BR - CTIR Gov-BR]]>>/%
|1|[[✔|https://first.org/members/teams/ctir_gov-br]]|
|f|🇧🇷|
|g|✔|
|n|CTIR Gov-BR ((*(Cyber Incident Prevention, Handling and Response Center of Brazilian Government)))|
|49|x|
|7|-|
|d|BO|
|y|Institutionnel|
|u|[[⇗|https://ctir.gov.br]]/[[⇗|https://www.gov.br/ctir]]|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - BR - Apura DFIR / CSIRT Team]]>>/%
|1|[[✔|https://first.org/members/teams/apura_csirt]]|
|n|Apura CSIRT]]|
|f|🇧🇷|
|n|Apura DFIR / CSIRT Team|
|o|Apura DFIR / Team|
|d|BR|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - BR - Brazilian Academic and Research Network CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/cais-rnp]]|
|n|CAIS/RNP]]|
|f|🇧🇷|
|n|Brazilian Academic and Research Network CSIRT|
|o|Brazilian Academic and Research Network|
|d|BR|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - BR - CSIRT PETROBRAS]]>>/%
|1|[[✔|https://first.org/members/teams/csirt_petrobras]]|
|n|CSIRT PETROBRAS]]|
|f|🇧🇷|
|n|CSIRT PETROBRAS|
|o|PETROBRAS|
|d|BR|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - BR - NTTDATA-BR-CERT]]>>/%
|1|[[✔|https://first.org/members/teams/nttdata-br-cert]]|
|n|NTTDATA-BR-CERT]]|
|f|🇧🇷|
|n|NTTDATA-BR-CERT|
|o|NTTDATA-BR|
|d|BR|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - BR - Nu CSIRT]]>>/%
|1|[[✔|https://first.org/members/teams/nubank_csirt]]|
|n|Nubank CSIRT]]|
|f|🇧🇷|
|n|Nu CSIRT|
|o|Nu|
|d|BR|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - CL - CSIRT Armada]]>>/%
|d|CL|
|f|🇨🇱|
|g|x|
|n|CSIRT Armada|
|u|[[⇗|https://www.armada.cl/]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - CL - CSIRT-CL]]>>/%
|1|✔|
|49|x|
|7|-|
|d|CL|
|f|🇨🇱|
|g|✔|
|n|CSIRT-CL|
|u|[[⇗|https://www.csirt.gob.cl/]]/[[⇗|https://interior.gob.cl]]|
|y|National|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - CL - CCCD]]>>/%
|d|CL|
|f|🇨🇱|
|g|x|
|n|CCCD|
|u|[[⇗|https://www.emco.mil.cl/]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - CO - colCERT]]>>/%
|1|x|
|49|x|
|7|-|
|d|CO|
|f|🇨🇴|
|g|✔|
|n|colCERT ((*(Grupo de Respuesta a Emergencias Cibernéticas de Colombia)))|
|u|[[⇗|https://colcert.gov.co]]|
|y|Institutionnel|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - CO - COCIB]]>>/%
|d|CO|
|f|🇨🇴|
|g|x|
|n|COCIB|
|u|[[⇗|https://www.armada.mil.co/]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - CO - CSIRT-MDN]]>>/%
|d|CO|
|f|🇨🇴|
|g|✔|
|n|CSIRT-MDN|
|u|[[⇗|https://www.mindefensa.gov.co]]|
|y|Government|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - CO - CSIRT-EJC]]>>/%
|d|CO|
|f|🇨🇴|
|g|x|
|n|CSIRT-EJC|
|u|[[⇗|https://www.ejercito.mil.co/]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - CO - CSIRT-PRESIDENCIA]]>>/%
|d|CO|
|f|🇨🇴|
|g|✔|
|n|CSIRT-PRESIDENCIA|
|u|[[⇗|https://www.presidencia.gov.co/]]|
|y|Government|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - CO - CSIRT-CCOCI]]>>/%
|d|CO|
|f|🇨🇴|
|g|x|
|n|CSIRT-CCOCI|
|u|[[⇗|https://www.ccoci.mil.co/servicios/cooperacion-internacional/4]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - CO - ColCERT]]>>/%
|d|CO|
|f|🇨🇴|
|g|✔|
|u|[[⇗|https://www.colcert.gov.co/]]|
|y|National|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - CO - CSIRT Aeronáutico]]>>/%
|d|CO|
|f|🇨🇴|
|g|x|
|n|CSIRT Aeronáutico|
|u|[[⇗|https://www.fac.mil.co/]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - CO - CSIRT-PONAL]]>>/%
|d|CO|
|f|🇨🇴|
|g|x|
|n|CSIRT-PONAL|
|u|[[⇗|https://cc-csirt.policia.gov.co/]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - EC - CSIRT Ecuador]]>>/%
|d|EC|
|f|🇪🇨|
|g|✔|
|n|CSIRT Ecuador|
|u|[[⇗|https://www.gobiernoelectronico.gob.ec/csirt-ecuador/]]|
|y|National|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - EC - COCIBER]]>>/%
|d|EC|
|f|🇪🇨|
|g|x|
|n|COCIBER|
|u|[[⇗|https://www.ccffaa.mil.ec/]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - EC - CSIRT-ARE]]>>/%
|d|EC|
|f|🇪🇨|
|g|x|
|n|CSIRT-ARE|
|u|[[⇗|https://www.armada.mil.ec/]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - EC - EcuCERT]]>>/%
|1|✔|
|49|x|
|7|-|
|d|EC|
|f|🇪🇨|
|g|✔|
|n|EcuCERT ((*(Centro de Respuesta a Incidentes Informáticos de la Agencia de Regulación y Control de las Telecomunicaciones)))|
|u|[[⇗|https://ecucert.gob.ec]]|
|y|Government|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - GY - CIRT-GY]]>>/%
|1|x|
|49|x|
|7|-|
|d|GY|
|f|🇬🇾|
|g|✔|
|n|CIRT-GY|
|u|[[⇗|https://cirt.gy]]|
|y|National|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - PE - PeCERT]]>>/%
|d|PE|
|f|🇵🇪|
|z|sa|
|n|PeCERT ((*(Peru CERT)))|
|u|[[⇗|https://pcm.gob.pe]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|49|x|
%/
<<tiddler f_IdIRT with: [[CSIRT - PE - CITELE_EP]]>>/%
|d|PE|
|f|🇵🇪|
|g|x|
|n|CITELE_EP|
|u|[[⇗|https://www.ejercito.mil.pe/]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - PE - CSIRT-MGP]]>>/%
|d|PE|
|f|🇵🇪|
|g|x|
|n|CSIRT-MGP|
|u|[[⇗|https://www.marina.mil.pe/es/]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - PE - CSIRT-CCFFAA]]>>/%
|d|PE|
|f|🇵🇪|
|g|x|
|n|CSIRT-CCFFAA|
|u|[[⇗|https://www.ccffaa.mil.pe]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - PE - CSIRT-COCID]]>>/%
|d|PE|
|f|🇵🇪|
|g|✔|
|n|CSIRT-COCID|
|u|[[⇗|https://www.gob.pe/institucion/ccffaa/noticias/505601-ministro-de-defensa-inauguro-instalaciones-del-comando-operacional-de-ciberdefensa]]|
|y|Government|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - PE - CSIRT-GRSM]]>>/%
|d|PE|
|f|🇵🇪|
|g|✔|
|n|CSIRT-GRSM|
|u|[[⇗|https://www.gob.pe/regionsanmartin]]|
|y|Government|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - PE - CSIRT-PE]]>>/%
|d|PE|
|f|🇵🇪|
|g|✔|
|n|CSIRT-PE|
|u|[[⇗|https://www.gob.pe/cnsd]]|
|y|National|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - PE - CSIRT-FAP]]>>/%
|d|PE|
|f|🇵🇪|
|g|x|
|n|CSIRT-FAP|
|u|[[⇗|https://www.gob.pe/fap]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - PY - CERT-PY]]>>/%
|1|x|
|49|x|
|7|-|
|d|PY|
|f|🇵🇾|
|g|✔|
|n|CERT-PY ((*(Paraguay Equipo de Respuesta ante Incidentes Ciberneticos)))|
|u|[[⇗|https://cert.gov.py]]|
|y|National|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - SR - SurCSIRT]]>>/%
|1|x|
|49|x|
|7|-|
|d|SR|
|f|🇸🇷|
|g|✔|
|n|SurCSIRT|
|u|[[⇗|https://www.csirt.sr/]]/[[⇗|https://surcsirt.gov.sr]]|
|y|National|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - UY - CERTuy]]>>/%
|1|✔|
|49|x|
|7|-|
|d|UY|
|f|🇺🇾|
|g|✔|
|n|CERTuy ((*(Centro Nacional de Respuesta de Incidentes de Seguridad Informatica)))|
|u|[[⇗|https://cert.uy]]/[[⇗|https://www.gub.uy/centro-nacional-respuesta-incidentes-seguridad-informatica/]]|
|y|National|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - UY - DCSIRT-UY]]>>/%
|d|UY|
|f|🇺🇾|
|g|x|
|n|DCSIRT-UY|
|u|[[⇗|https://www.gub.uy/ministerio-defensa-nacional/]]|
|y|Military|
|z|sa|
%/
<<tiddler f_IdIRT with: [[CSIRT - VE - VenCERT]]>>/%
|d|VE|
|f|🇻🇪|
|z|sa|
|n|VenCERT ((*(Sistema Nacional de Gestión de Incidentes Telemáticos (Computer Incident Management National System)))|
|u|[[⇗|https://vencert.gob.ve]]|
|g|✔|
|y|Institutionnel|
|1|x|
|7|-|
|49|x|
%/
<<tiddler [[Traffic Light Protocol]]>>
!!Traffic Light Protocol (TLP)
Le TLP est un protocole qui traite de la diffusion des informations.
La dernière version du ''TLP'' est la ''version 2.0'' et disponible sur la page "Traffic Light Protocol" [[⇗|https://www.first.org/tlp/]] du FIRST
* La version anglaise a été publiée par le FIRST en ''août 2022''.
* La traduction française est disponible depuis ''février 2023''.
* La traduction française de la version précédente (1.0) est aussi publiée ci-dessous à des fins historiques.
<<tabs TLP "TLP 2.0 en français" "français" [[TLP v2.0 FR]] "TLP 2.0 en Anglais" "Anglais" [[TLP v2.0 EN]] "TLP 1.0 en français" "français" [[TLP v1.0 FR]] "Poster TLP v2" "Poster format A4" [[TLP Poster]]>>
!!TRAFFIC LIGHT PROTOCOL (TLP) Version 2.0 en français
* Version de référence au format PDF : indisponible actuellement /% https://www.first.org/tlp/docs/v2/tlp-v2-fr.pdf %/ [>img(400px,auto)[iCSIRT/TLP_Poster.png]]
* Version de référence au format RTF : indisponible actuellement /% https://www.first.org/tlp/docs/v2/tlp-v2-fr.rtf %/
__''Définitions des Normes et Conseils d'Utilisation''__
!!1 - Introduction
# Le protocole TLP (Traffic Light Protocol) a été créé pour faciliter un plus grand partage d'informations potentiellement sensibles et une collaboration plus efficace. Le partage d'informations se fait à partir d'une source d'informations, vers un ou plusieurs destinataires. Le protocole TLP est un ensemble de quatre appellations utilisées pour indiquer les limites de partage à appliquer par les destinataires. Seules les appellations listées dans cette norme sont considérées comme valides par le FIRST.
# Les quatre appellations du protocole TLP sont : TLP:RED, TLP:AMBER, TLP:GREEN, et TLP:CLEAR. A l'écrit, ils NE DOIVENT pas contenir d'espaces et DOIVENT être en majuscules. Les appellations du protocole TLP DOIVENT rester dans leur forme originale, même lorsqu'ils sont utilisés dans d'autres langues : le contenu peut être traduit, mais pas les labels.
# Le protocole TLP fournit un schéma simple et intuitif pour indiquer avec qui les informations potentiellement sensibles peuvent être partagées. Le protocole TLP n'est pas un schéma de classification formel. Le protocole TLP n'a pas été conçu pour gérer les termes de licence, ni les règles de traitement de l'information ou de chiffrement. Les appellations du protocole TLP et leurs définitions ne sont pas destinées à avoir un quelconque effet sur la liberté d'accès aux documents administratifs ou les lois dites "sunshine" dans aucune juridiction.
# Le protocole TLP est optimisé pour la facilité d'adoption, la lisibilité humaine et le partage de personne à personne ; il peut être utilisé dans des systèmes automatisés d'échange d'informations, tels que MISP ou IEP.
# Le protocole TLP est distinct de la règle de Chatham House, mais peut être utilisé conjointement lorsque cela est approprié. Lorsqu'une réunion se tient selon la règle de Chatham House, les participants sont libres d'utiliser les informations reçues, mais ni l'identité ni l'affiliation du ou des intervenants, ni celle de tout autre participant, ne peuvent être révélées.
# ''La source a la responsabilité de s'assurer que les destinataires des informations étiquetées avec le protocole TLP comprennent et sont en mesure de suivre les instructions de partage du protocole TLP.''
# ''La source est libre de spécifier des restrictions de partage supplémentaires. Celles-ci doivent être respectées par les destinataires.''
# ''Si un destinataire a besoin de partager l'information plus largement que ce qui est indiqué par le protocole TLP avec lequel elle a été fournie, il doit obtenir la permission explicite de la source.''
!!2 - Utilisation
# ''Comment utiliser le protocole TLP dans la messagerie (comme le courriel et le chat)''
** La messagerie étiquetée TLP DOIT indiquer le label TLP de l'information, ainsi que toute restriction supplémentaire, directement avant l'information elle-même. La mention du label TLP DOIT figurer dans la ligne d'objet du courriel. Si nécessaire, veillez également à indiquer la fin du texte auquel s'applique le label TLP.
# ''Comment utiliser le protocole TLP dans les documents''
** Les documents portant un label TLP DOIVENT indiquer le niveau de TLP de l'information, ainsi que toute restriction supplémentaire, dans l'en-tête et le pied de page de chaque page. La mention du protocole TLP DOIT être en caractères de 12 points ou plus pour les utilisateurs malvoyants. Il est recommandé d'ajuster les mentions TLP à droite.
# ''Comment utiliser le protocole TLP dans les échanges d'informations automatisés''
** L'utilisation du protocole TLP dans les échanges d'informations automatisés n'est pas définie : elle est laissée aux concepteurs de ces échanges, mais DOIT être conforme à la présente norme.
# ''Codage couleur du TLP en RGB, CMYK et Hex.''
| |!|>|>| ''RGB:font'' |!|>|>| ''RGB:background'' |!|>|>|>| ''CMYK:font'' |!|>|>|>| ''CMYK:background'' |!| ''Hex'' | ''Hex'' |!|
|~|~| R | G | B |~| R | G | B |~| C | M | Y | K |~| C | M | Y | K |~| ''font'' | ''background'' |~|
|!|~|>|>|!|~|>|>|!|~|>|>|>|!|~|>|>|>|!|~|>|!|~|
|color:#FF2B2B;bgcolor:#000000;''TLP:RED'' |~| 255 | 43 | 43 |~| 0 | 0 | 0 |~| 0 | 83 | 83 | 0 |~| 0 | 0 | 0 | 100 |~| #FF2B2B | #000000 |~|
|color:#FFC000;bgcolor:#000000;''TLP:AMBER'' |~| 255 | 192 | 0 |~| 0 | 0 | 0 |~| 0 | 25 | 100 | 0 |~| 0 | 0 | 0 | 100 |~| #FFC000 | #000000 |~|
|color:#33FF00;bgcolor:#000000;''TLP:GREEN'' |~| 51 | 255 | 0 |~| 0 | 0 | 0 |~| 79 | 0 | 100 | 0 |~| 0 | 0 | 0 | 100 |~| #33FF00 | #000000 |~|
|color:#FFFFFF;bgcolor:#000000;''TLP:CLEAR'' |~| 255 | 255 | 255 |~| 0 | 0 | 0 |~| 0 | 0 | 0 | 0 |~| 0 | 0 | 0 | 100 |~| #FFFFFF | #000000 |~|
^^Remarque sur le codage couleur : lorsque le contraste entre le texte et le fond est trop faible, les personnes malvoyantes ont du mal à lire le texte ou ne le voient pas du tout. Le protocole TLP est conçu pour s'adapter aux personnes malvoyantes. Les sources DEVRAIENT adhérer au code couleur du protocole TLP pour assurer un contraste de couleur suffisant pour ces lecteurs.^^
!!3 - Définitions des appellations utilisées par le protocole TLP
''Communauté'' : Dans le cadre du protocole TLP, une communauté est un groupe qui partage des objectifs, des pratiques et des relations de confiance informelles. Une communauté peut être aussi large que tous les praticiens de la cybersécurité dans un pays (ou dans un secteur ou une région).
''Organisation'' : Dans le cadre du protocole TLP, une organisation est un groupe qui partage une affiliation commune par une adhésion formelle et qui est lié par des politiques communes définies par l'organisation. Une organisation peut être aussi large que tous les membres d'une organisation de partage d'informations, mais rarement plus large.
''Clients'' : Dans le cadre du protocole TLP, les clients sont les personnes ou entités qui reçoivent des services de cybersécurité d'une organisation. Les clients sont inclus par défaut dans l'appellation TLP:AMBER afin que les destinataires puissent partager des informations en aval pour que les clients prennent des mesures pour se protéger. Pour les équipes ayant une responsabilité nationale, cette définition inclut les parties prenantes et les électeurs.
@@font-size:125%;color:#FF2B2B;bgcolor:#000000;TLP:RED@@
* Pour les yeux et les oreilles des destinataires individuels uniquement, aucune autre divulgation. Les sources peuvent utiliser l'appellation TLP:RED lorsque les informations ne peuvent pas être traitées efficacement sans risque significatif pour la vie privée, la réputation ou les opérations des organisations concernées. Les destinataires ne peuvent donc pas partager les informations avec l'appellation TLP:RED avec qui que ce soit. Dans le contexte d'une réunion, par exemple, les informations mentionnées avec le label TLP:RED sont limitées aux personnes présentes à la réunion.
@@font-size:125%;color:#FFC000;bgcolor:#000000;TLP:AMBER@@
* Divulgation limitée, les destinataires ne peuvent diffuser ces informations que sur la base du besoin d'en connaître au sein de leur organisation et de ses clients. Notez que le ''@@font-size:125%;color:#FFC000;bgcolor:#000000;TLP:AMBER+STRICT@@'' restreint le partage à l'organisation uniquement. Les sources peuvent utiliser le TLP:AMBER lorsque l'information nécessite un soutien pour être traitée efficacement, mais qu'elle présente un risque pour la confidentialité, la réputation ou les opérations si elle est partagée en dehors des organisations concernées. Les destinataires peuvent partager les informations avec la mention TLP:AMBER avec les membres de leur propre organisation et ses clients, mais ''uniquement'' sur la base du besoin d'en connaître, afin de protéger leur organisation et ses clients et d'éviter tout préjudice supplémentaire.
** Remarque : si la source souhaite restreindre le partage à l'organisation uniquement, elle doit spécifier TLP:AMBER+STRICT.
@@font-size:125%;color:#33FF00;bgcolor:#000000;TLP:GREEN@@
Divulgation limitée, les destinataires peuvent la diffuser au sein de leur communauté. Les sources peuvent utiliser l'appellation TLP:GREEN lorsque l'information est utile pour accroître la sensibilisation au sein de leur communauté. Les destinataires peuvent partager les informations avec l'appellation TLP:GREEN avec leurs pairs et les organisations partenaires au sein de leur communauté, mais pas via des canaux accessibles au public. Les informations ayant la mention TLP:GREEN ne peuvent pas être partagées en dehors de la communauté.
** Remarque : lorsque le terme "communauté" n'est pas défini, il s'agit de la communauté de la cybersécurité/défense.
@@font-size:125%;color:#FFFFFF;bgcolor:#000000;TLP:CLEAR@@
Les destinataires peuvent diffuser cette information dans le monde entier, il n'y a pas de limite à la divulgation. Les sources peuvent utiliser l'appellation TLP:CLEAR lorsque les informations présentent un risque minimal ou nul de mauvaise utilisation, conformément aux règles et procédures applicables à la diffusion publique. Sous réserve des règles standard de copyright, les informations mentionnées en TLP:CLEAR peuvent être partagées sans restriction.
----
__Notes__
# Ce document utilisent les termes DOIT (MUST) et DEVRAIT (SHOULD) tel que défini dans le [[RFC-2119|https://tools.ietf.org/html/rfc2119]].
# Tous les commentaires et ou suggestions peuvent être envoyées à l'adresse courriel suivante //tlp-sig @ first . org//.
----
__Traduction (Translation)__
* Marc-Frederic GOMEZ, CERT Credit Agricole (FR)
* Louis Rouxel, CERT-FR (FR)
* Olivier Caleff, FIRST Liaison member (FR)
__Révision (Review)__
* Don Stikvoort, FIRST Liaison member (NL)
|>| !Source primaire : sur le site du FIRST |
|Format ''PDF'' : https://www.first.org/tlp/docs/tlp-a4.pdf |Format ''RTF'' : https://www.first.org/tlp/docs/tlp.rtf |
!!1 - TRAFFIC LIGHT PROTOCOL (TLP) Version 2.0
[>img(400px,auto)[iCSIRT/TLP_Poster.png]]__''FIRST Standards Definitions and Usage Guidance -- Version 2.0''__
''TLP version 2.0 is the current version of TLP standardized by FIRST. It is authoritative from August 2022 onwards''
!!1.1 - Introduction
# The Traffic Light Protocol (TLP) was created to facilitate greater sharing of potentially sensitive information and more effective collaboration. Information sharing happens from an information //source//, towards one or more //recipients//. TLP is a set of four labels used to indicate the sharing boundaries to be applied by the recipients. Only labels listed in this standard are considered valid by FIRST.
# The four TLP labels are: TLP:RED, TLP:AMBER, TLP:GREEN, and TLP:CLEAR. In written form, they MUST not contain spaces and SHOULD be in capitals. TLP labels MUST remain in their original form, even when used in other languages: content can be translated, but the labels cannot.
# TLP provides a simple and intuitive schema for indicating with whom potentially sensitive information can be shared. TLP is not a formal classification scheme. TLP was not designed to handle licensing terms, nor information handling or encryption rules. TLP labels and their definitions are not intended to have any effect on freedom of information or 'sunshine' laws in any jurisdiction.
# TLP is optimized for ease of adoption, human readability and person-to-person sharing; it may be used in automated information exchange systems, such as [[MISP|https://www.misp-project.org]] or [[IEP|https://www.first.org/iep/]].
# TLP is distinct from the Chatham House Rule, but may be used in conjunction when appropriate. When a meeting is held under the Chatham House Rule, participants are free to use the information received, but neither the identity nor the affiliation of the speaker(s), nor that of any other participant, may be revealed.
# ''The source is responsible for ensuring that recipients of TLP-labeled information understand and can follow TLP sharing guidance.''
# ''The source is at liberty to specify additional sharing restrictions. These must be adhered to by recipients.''
# ''If a recipient needs to share information more widely than indicated by the TLP label it came with, they must obtain explicit permission from the source.''
!!1.2 - Usage
# ''How to use TLP in messaging (such as email and chat)''
** TLP-labeled messaging MUST indicate the TLP label of the information, as well as any additional restrictions, directly prior to the information itself. The TLP label SHOULD be in the subject line of email. Where needed, also make sure to designate the end of the text to which the TLP label applies.
# ''How to use TLP in documents''
** TLP-labeled documents MUST indicate the TLP label of the information, as well as any additional restrictions, in the header and footer of each page. The TLP label SHOULD be in ''12-point type or greater'' for users with low vision. It is recommended to right-justify TLP labels.
# ''How to use TLP in automated information exchanges''
** TLP usage in automated information exchanges is not defined: this is left to the designers of such exchanges, but MUST be in accordance with this standard.
# ''TLP color-coding in RGB, CMYK and Hex''
| |!|>|>| ''RGB:font'' |!|>|>| ''RGB:background'' |!|>|>|>| ''CMYK:font'' |!|>|>|>| ''CMYK:background'' |!| ''Hex'' | ''Hex'' |!|
|~|~| R | G | B |~| R | G | B |~| C | M | Y | K |~| C | M | Y | K |~| ''font'' | ''background'' |~|
|color:#FF2B2B;bgcolor:#000000;''TLP:RED'' |~| 255 | 43 | 43 |~| 0 | 0 | 0 |~| 0 | 83 | 83 | 0 |~| 0 | 0 | 0 | 100 |~| #FF2B2B | #000000 |~|
|color:#FFC000;bgcolor:#000000;''TLP:AMBER'' |~| 255 | 192 | 0 |~| 0 | 0 | 0 |~| 0 | 25 | 100 | 0 |~| 0 | 0 | 0 | 100 |~| #FFC000 | #000000 |~|
|color:#33FF00;bgcolor:#000000;''TLP:GREEN'' |~| 51 | 255 | 0 |~| 0 | 0 | 0 |~| 79 | 0 | 100 | 0 |~| 0 | 0 | 0 | 100 |~| #33FF00 | #000000 |~|
|color:#FFFFFF;bgcolor:#000000;''TLP:CLEAR'' |~| 255 | 255 | 255 |~| 0 | 0 | 0 |~| 0 | 0 | 0 | 0 |~| 0 | 0 | 0 | 100 |~| #FFFFFF | #000000 |~|
Note on color-coding: when there is too little color contrast between text and background, those with low vision struggle to read text or cannot see it at all. TLP is designed to accommodate those with low vision. Sources SHOULD adhere to the TLP color-coding to ensure enough color contrast for such readers.
!!1.3 - TLP definitions
''Community:'' Under TLP, a //community// is a group who share common goals, practices, and informal trust relationships. A community can be as broad as all cybersecurity practitioners in a country (or in a sector or region).
''Organization:'' Under TLP, an //organization// is a group who share a common affiliation by formal membership and are bound by common policies set by the organization. An organization can be as broad as all members of an information sharing organization, but rarely broader.
''Clients:'' Under TLP, clients are those people or entities that receive cybersecurity services from an //organization//. Clients are by default included in TLP:AMBER so that the recipients may share information further downstream in order for clients to take action to protect themselves. For teams with national responsibility this definition includes stakeholders and constituents.
# ''@@font-size:125%;color:#FF2B2B;bgcolor:#000000;TLP:RED@@'' = For the eyes and ears of //individual// recipients only, no further disclosure.
** Sources may use TLP:RED when information cannot be effectively acted upon without significant risk for the privacy, reputation, or operations of the organizations involved. Recipients may therefore not share TLP:RED information with anyone else. In the context of a meeting, for example, TLP:RED information is limited to those present at the meeting.
# ''@@font-size:125%;color:#FFC000;bgcolor:#000000;TLP:AMBER@@'' = Limited disclosure, recipients can only spread this on a need-to-know basis within their //organization// and its //clients//.
** Note that ''@@font-size:125%;color:#FFC000;bgcolor:#000000;TLP:AMBER+STRICT@@'' restricts s