REVIEW 6 major objections 6 minor 59 references
Adversarial Attacks on Deep Learning-Based False Data Injection Detection in Differential Relays
T0 review · 6 major / 6 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read Adversarial remote-measurement tweaks fool grid relay AI up to 99.7%
desk verdict Useful first demonstration of adversarial attacks on DL-based FDIA detection in differential relays, but the reported dual-success rates are not actually measured by the paper's metric. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is an iterative FGSM attack specialized to the LCDR setting. Its perturbation is $\delta_x = \epsilon \cdot \mathrm{sign}(\nabla_x J(\theta, x', y)) \cdot a$, where $a$ is the maximum absolute value of the input sample, only features originating from remote measurements are perturbed, and the updated sample is clipped so that no element leaves the original sample's minimum-maximum range. The iteration accepts an adversarial sample only if the DL model outputs the fault class and the manipulated remote currents satisfy the relay's operating criterion $i_d \ge i_{op}$, so a successful attack satisfies two independent checks. The defense is adversarial training: the same attack generator is run on the training set, successful adversarial samples are relabeled as FDIAs and added to the training data, and the model is retrained for ten epochs, producing a detector that classifies the adversarial perturbations as attacks.
What would settle it
A concrete test is to replay the reported attacks on a hardware-in-the-loop differential relay using real sampled-value packets (IEC 61850 SV) with communication latency and measurement noise typical of field deployments, and measure the fooling rate under the same $\epsilon=0.5$ and five-iteration budget. If the fooling rates fall substantially below the reported figures—especially the 99.74% MLP figure—the claimed vulnerability is an artifact of the simulated waveforms rather than a property of operational LCDRs.
Extended reading notes
Core claim
The paper's central claim is that an attacker who fully controls the communication link carrying remote current measurements can craft adversarial false-data-injection attacks that evade deep-learning FDIA detection in line current differential relays and cause a false trip. The attack generates perturbations with the Fast Gradient Sign Method, scaling the sign-gradient step by the sample's amplitude, applying it only to remote-measurement features, clipping to the original value range, and iterating until the sample is misclassified as a legitimate fault while the relay's trip condition holds. On a simulated inverter-based microgrid, the fooling rate reaches 99.74% for the MLP detector proposed in prior LCDR work, whereas the ResNet blocks about 90% of the adversarial samples. The paper therefore concludes that the proposed DLS architectures are not robust under this threat model and that adversarial training materially recovers performance.
Load-bearing premise
The whole evaluation depends on the electromagnetic transient simulation of the benchmark medium-voltage microgrid, with its specific relay settings, measurement noise, sampling rate, and four-cycle observation window, being representative enough of real line current differential relays that the measured attack success rates and the adversarial-training gains transfer to field conditions.
Editorial extensions
If this is right
- The MLP-based FDIA detector proposed in prior LCDR literature should not be deployed against an adversary who can modify remote measurements; its fooling rate under the stated threat model exceeds 99%.
- ResNet is the most robust of the four architectures tested, but even it is not immune: 9.78% of adversarial samples evade it, so architecture choice alone does not solve the problem.
- Adversarial training recovers most of the detection capability against FGSM-crafted adversarial FDIAs while preserving high fault-detection accuracy, according to the paper's confusion-matrix results.
- Attack success increases with perturbation magnitude $\epsilon$, so an operator that bounds admissible perturbation amplitudes can reduce, but not eliminate, the risk.
- The added inference delay (0.755 to 1.37 ms, under 2 ms in real-time simulation) is small next to the relay's 1.5-to-2-cycle operating time, so the defense does not obviously slow protection.
Reading between the lines
- Editorial inference: because the paper evaluates white-box attacks where the adversary knows the model, a natural next test is whether the same fooling rates survive black-box transfer attacks or smaller perturbation budgets; the paper's own sensitivity results suggest the risk is reduced but not eliminated at lower $\epsilon$.
- Editorial inference: since a successful sample must also satisfy the relay's trip condition, defense-in-depth that independently validates the physical plausibility of the trip could break the attack even when the classifier is fooled.
- Editorial inference: the paper's fixed observation window, noise range, and single benchmark microgrid imply that retraining on different noise levels, window lengths, or line configurations would test whether adversarial training generalizes beyond the exact dataset used here.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper studies adversarial false-data injection attacks against deep-learning-based FDIA detectors embedded in line current differential relays. It formulates an FGSM-based attack that perturbs only remote measurements, with a stated dual success criterion of both misclassifying the manipulated sample as a fault and triggering the LCDR trip condition. The authors evaluate four DLS architectures (MLP, CNN, LSTM, ResNet) on a PSCAD-simulated CIGRE microgrid, report high fooling rates, propose adversarial training as a defense, and validate detection latency on a real-time HIL testbed. The central claim is that all evaluated DL-based FDIA detectors are vulnerable to the proposed adversarial FDIAs, with MLP the most vulnerable and ResNet the least.
Significance. If the reported results are reproduced, the paper identifies a practically important vulnerability class: small perturbations to remote current measurements can make DL-based FDIA detectors classify an attack as a fault while the protected line trips. The comparison of four architectures, the public dataset, and the real-time HIL latency validation are concrete strengths. The adversarial-training results are useful as a first robustness check, though their current evaluation is limited to FGSM. The paper's contribution is significant for smart-grid cybersecurity because LCDRs are safety-critical protection devices, and the authors correctly emphasize the dual physical-and-learning success condition that is often missing in adversarial-attack studies on power systems.
major comments (6)
- [Section II-B / Algorithm 3] The class-label mapping is stated inconsistently: Section II-B says ŷ=0 and ŷ=1 denote a legitimate fault and a malicious FDIA, respectively, while the same paragraph says y=0 and y=1 denote an FDIA and a fault, respectively. Algorithm 3's condition 'if (ŷ(x)=1) and (y=1)' is therefore either vacuous or, under the intended label convention, selects fault samples rather than FDIA samples for adversarial-sample generation. This makes the defense procedure ambiguous and must be corrected before the adversarial-training results can be reproduced.
- [Section III-B / Eq. (13)] Equation (13) defines the fooling rate using only model misclassification to the target class; it contains no term checking ||i_d|| ≥ i_op from Eq. (4), despite Section III-B's constraint 3 requiring the dual success criterion and the abstract's claim that the attack also triggers the LCDR to trip. Because an FGSM perturbation can move an initially tripping sample out of the trip region, the reported success rates, including the >99.7% figure, may count samples that would not actually trip the relay. The metric should be revised, or the authors should provide a post-hoc verification that every counted sample satisfies Eq. (4).
- [Section III-B / Algorithm 2] Algorithm 2's pseudocode cannot execute as written: the while loop returns in both branches of the inner if on the first iteration, so the loop over N_itr never iterates, and the 'Ensure problem constraints' step is left unspecified without referencing Eq. (4). This makes the attack-generation procedure and the adversarial-training augmentation in Algorithm 3 non-reproducible. The pseudocode should be corrected to iterate properly and to explicitly check the LCDR trip condition.
- [Section III-A3 / Section III-B] The threat model is internally inconsistent. Section III-A3 states that the adversary applies FGSM 'in a black-box manner, i.e., without accessing the exact model parameters,' but Eq. (10) requires the loss gradient ∇_x J(θ,x,y) with respect to the model parameters, and Algorithm 2 takes f_θ as input. The authors should clarify whether the attack is white-box or black-box; if black-box, they should describe the surrogate model and report transferability results.
- [Section VI / Algorithm 3] The adversarial-training evaluation is non-adaptive: the defense is trained and tested using only FGSM-generated samples with the same ε values, and no results are reported against PGD, C&W, or adaptive attacks. The paper's conclusion that adversarial training makes models 'robust to adversarial FDIAs' is therefore stronger than the evidence supports; the claim should be scoped to robustness against FGSM-style attacks.
- [Section IV-E2 / Table II / Fig. 10] The attack-success numbers are not reconciled with each other. Section IV-E2 reports an MLP attack success rate of 99.74%, Table II reports 97.24% poisoned samples for MLP, and Fig. 10 reports FR reaching 97.44% at ε≥0.5 for MLP. These may reflect different definitions, but the paper does not explain the relationship, and all values are single-point estimates with no confidence intervals or multiple-seed variation, which is insufficient for a security claim of this strength.
minor comments (6)
- [Eq. (13)] The equation contains a long ellipsis placeholder ('..............') that should be removed in the final typeset version.
- [References] Reference [49] displays 'M ˛ adry' and should be corrected to 'Madry'.
- [Table II] The term 'Poisoned Samples' is ambiguous because it normally refers to training-data poisoning; here it appears to mean the fraction of FDIA samples successfully turned into adversarial samples, and this should be stated explicitly.
- [Section II-B] The list of investigated models begins at item '2) CNNs', so item 1) for the MLP appears to be missing.
- [Section IV-E2] For ResNet, 'successfully detecting 90.2% of adversarial FDIA samples' and Table II's 9.78% poisoned samples are complements, but the text does not state this relation, which initially reads as a contradiction.
- [Section VI-B] The authors note that protocol-specific latency, packet loss, and synchronization errors were not modeled; this limitation should also appear in the conclusion or abstract, since it bounds the real-world applicability of the latency claim.
Circularity Check
No significant circularity: the attack-success and adversarial-training results are empirical measurements, not derivations that reduce to their own inputs.
full rationale
The claimed derivation chain is: generate PSCAD-simulated FDIA and fault data satisfying the LCDR trip condition (1)-(4); train MLP/CNN/LSTM/ResNet classifiers on that data; craft FGSM perturbations on remote measurements; measure fooling rate on the resulting test set; then apply adversarial training and re-measure. None of these steps defines the target quantity in terms of itself. The fooling rate in Eq. (13) is a measured statistic over test samples, not a fitted parameter being renamed as a prediction. The use of the authors' prior MLP scheme [10] as an attacked baseline is a legitimate experimental input: the model is retrained in this paper and the vulnerability claim is assessed against its actual behavior, so the self-citation is not load-bearing. The adversarial-training evaluation is non-adaptive in the sense that the same FGSM attack is used both to generate training augmentations and to build the adversarial test set, which limits the strength of the robustness claim, but this is an evaluation limitation rather than circular reasoning. One genuine correctness concern is that the abstract claims attacks succeed 'while also triggering the LCDR to trip,' yet Eq. (13) defines FR using only the misclassification conditions I(y_i != yhat(x') and yhat(x') = y_target), with no term checking ||i_d|| >= i_op from Eq. (4); Algorithm 2's constraint check is also unspecified. That is a measurement/validation gap, not a circular reduction, so it does not raise the circularity score. Overall, the paper's central vulnerability result is self-contained empirical work, and no step reduces by construction to its inputs.
Assumptions & free parameters
free parameters (3)
- epsilon (FGSM perturbation magnitude) =
0.5 (swept in Section V-A)
- N_itr (FGSM iterations) =
5 (sensitivity checked at 50)
- adversarial training epochs =
10
assumptions (5)
- domain assumption Dolev-Yao attacker controls the communication link carrying remote current measurements and can eavesdrop, modify, and inject packets, while local copper-wire measurements remain unmodifiable.
- domain assumption The LCDR operating equations (1)-(4) with settings id0=0.05 kA, ib=0.585 kA, m1=0.2, m2=0.4 accurately describe relay tripping.
- domain assumption PSCAD/EMTDC simulation of the CIGRE medium-voltage benchmark microgrid with 35-60 dB AWGN produces realistic local and remote current waveforms for faults and FDIAs.
- ad hoc to paper FGSM gradient-sign perturbations constrained to remote features and clipped to the input range yield physically plausible manipulated currents that still satisfy the relay trip condition.
- ad hoc to paper Adversarial training on samples generated by the same FGSM algorithm is sufficient to assess robustness against adversarial FDIAs.
Cite this review
Pith. "Pith review of Adversarial Attacks on Deep Learning-Based False Data Injection Detection in Differential Relays." pith.science (2026). https://pith.science/paper/QWEQ6MUA
@misc{pith2026250619302,
author = {Pith},
title = {Pith review of: Adversarial Attacks on Deep Learning-Based False Data Injection Detection in Differential Relays},
year = {2026},
howpublished = {\url{https://pith.science/paper/QWEQ6MUA}},
note = {Machine review of arXiv:2506.19302}
}
read the original abstract
The application of Deep Learning-based Schemes (DLSs) for detecting False Data Injection Attacks (FDIAs) in smart grids has attracted significant attention. This paper demonstrates that adversarial attacks, carefully crafted FDIAs, can evade existing DLSs used for FDIA detection in Line Current Differential Relays (LCDRs). We propose a novel adversarial attack framework, utilizing the Fast Gradient Sign Method, which exploits DLS vulnerabilities by introducing small perturbations to LCDR remote measurements, leading to misclassification of the FDIA as a legitimate fault while also triggering the LCDR to trip. We evaluate the robustness of multiple deep learning models, including multi-layer perceptrons, convolutional neural networks, long short-term memory networks, and residual networks, under adversarial conditions. Our experimental results demonstrate that while these models perform well, they exhibit high degrees of vulnerability to adversarial attacks. For some models, the adversarial attack success rate exceeds 99.7%. To address this threat, we introduce adversarial training as a proactive defense mechanism, significantly enhancing the models' ability to withstand adversarial FDIAs without compromising fault detection accuracy. Our results highlight the significant threat posed by adversarial attacks to DLS-based FDIA detection, underscore the necessity for robust cybersecurity measures in smart grids, and demonstrate the effectiveness of adversarial training in enhancing model robustness against adversarial FDIAs.
Figures
Figures from the paper (8 more)
Reference graph
Works this paper leans on
-
[1]
False data injection attacks against state estimation in electric power grids,
Y . Liu, P. Ning, and M. K. Reiter, “False data injection attacks against state estimation in electric power grids,” inProceedings of the 16th ACM Conference on Computer and Communications Security, Chicago, IL, USA, November 2009, pp. 21–32
work page 2009
-
[2]
Trends in smart grid cyber-physical security: Components, threats and solutions,
D. M. Manias, A. M. Saber, M. I. Radaideh, A. T. Gaber, M. Maniatakos, H. Zeineldin, D. Svetinovic, and E. F. El-Saadany, “Trends in smart grid cyber-physical security: Components, threats and solutions,”IEEE Access, 2024
work page 2024
-
[3]
Modern line current differential protection solutions,
H. Miller, J. Burger, N. Fischer, and B. Kasztenny, “Modern line current differential protection solutions,” in63rd Annual Conference on Protective Relay Engineers, March 2010, pp. 1–25
work page 2010
-
[4]
National Renewable Energy Laboratory, “Cutting-edge research, local microgrids for the u.s. military, and 100-mile ultramarathons: An interview with Jerry Davis,” April 28 2020, [Online]. Available: https://www.nrel.gov/news/program/2020/ qa-jerry-davis-research-military-local-microgrids.html
work page 2020
-
[5]
Detection of microgrid cyberattacks using network and system management,
M. Karanfil, D. E. Rebbah, M. Debbabiet al., “Detection of microgrid cyberattacks using network and system management,”IEEE Transac- tions on Smart Grid, vol. 14, no. 3, pp. 2390–2405, 2022
work page 2022
-
[6]
A. Hooshyar and R. Iravani, “Microgrid protection,”Proceedings of the IEEE, vol. 105, no. 7, pp. 1332–1353, July 2017
work page 2017
-
[7]
Anomaly-based detection of cyberattacks on line current differential relays,
A. M. Saber, A. Youssef, D. Svetinovic, H. H. Zeineldin, and E. F. El-Saadany, “Anomaly-based detection of cyberattacks on line current differential relays,”IEEE Transactions on Smart Grid, vol. 13, no. 6, pp. 4787–4800, November 2022
work page 2022
-
[8]
Remedial pilot main protection scheme for transmission line independent of data synchronism,
L. Chen, X. Lin, Z. Liet al., “Remedial pilot main protection scheme for transmission line independent of data synchronism,”IEEE Transactions on Smart Grid, vol. 10, no. 1, pp. 681–690, January 2019
work page 2019
Show all 59 references
-
[9]
Analysis of the cyber attack on the ukrainian power grid,
R. M. Lee, M. J. Assante, and T. Conway, “Analysis of the cyber attack on the ukrainian power grid,”Electricity Information Sharing and Analysis Center (E-ISAC), DC, USA, 2016. [Online]. Available: https://ics.sans.org/media/E-ISACSANSUkraineDUC5.pdf
2016
-
[10]
Cyber-immune line current differential relays,
A. M. Saber, A. Youssef, D. Svetinovic, H. H. Zeineldin, and E. F. El- Saadany, “Cyber-immune line current differential relays,”IEEE Trans- actions on Industrial Informatics, vol. 20, no. 3, pp. 3597–3608, 2024
2024
-
[11]
Explaining and harnessing adversarial examples,
I. J. Goodfellow, J. Shlens, and C. Szegedy, “Explaining and harnessing adversarial examples,” inInternational Conference on Learning Repre- sentations, 2015
2015
-
[12]
Understanding and improving fast adversarial training,
M. Andriushchenko and N. Flammarion, “Understanding and improving fast adversarial training,”Advances in Neural Information Processing Systems, vol. 33, pp. 16 048–16 059, 2020
2020
-
[13]
Towards evaluating the robustness of neural networks,
N. Carlini and D. Wagner, “Towards evaluating the robustness of neural networks,” in2017 IEEE symposium on security and privacy (sp). IEEE, 2017, pp. 39–57
2017
-
[14]
Adversarial attacks and defenses in deep learning,
K. Ren, T. Zheng, Z. Qin, and X. Liu, “Adversarial attacks and defenses in deep learning,”Engineering, vol. 6, no. 3, pp. 346–360, 2020
2020
-
[15]
The limitations of deep learning in adversarial settings,
N. Papernot, P. McDaniel, S. Jha, M. Fredrikson, Z. B. Celik, and A. Swami, “The limitations of deep learning in adversarial settings,” in 2016 IEEE European Symposium on Security and Privacy (EuroS&P), 2016, pp. 372–387
2016
-
[16]
Attacking learning-based models in smart grids: Current challenges and new frontiers,
G. Sánchez, G. Elbez, and V . Hagenmeyer, “Attacking learning-based models in smart grids: Current challenges and new frontiers,” inPro- ceedings of the 15th ACM International Conference on Future and Sustainable Energy Systems, 2024, pp. 589–595
2024
-
[17]
A survey on adversarial attacks and defences,
A. Chakraborty, M. Alam, V . Dey, A. Chattopadhyay, and D. Mukhopad- hyay, “A survey on adversarial attacks and defences,”CAAI Transactions on Intelligence Technology, vol. 6, no. 1, pp. 25–45, 2021
2021
-
[18]
Vulnerability of machine learning approaches applied in iot-based smart grid: A review,
Z. Zhang, M. Liu, M. Sunet al., “Vulnerability of machine learning approaches applied in iot-based smart grid: A review,”IEEE Internet of Things Journal, 2024
2024
-
[19]
Resilient protection of medium voltage dc microgrids against cyber intrusion,
V . Nougain, S. Mishra, and S. S. Jena, “Resilient protection of medium voltage dc microgrids against cyber intrusion,”IEEE Transactions on Power Delivery, vol. 37, no. 2, pp. 960–971, April 2022
2022
-
[20]
A cyber resilient protection scheme for bipolar dc microgrids using symmetrical component decom- position,
A. Pandey, S. Mohanty, and R. Mohanty, “A cyber resilient protection scheme for bipolar dc microgrids using symmetrical component decom- position,”IEEE Transactions on Industrial Informatics, 2023
2023
-
[21]
Unmasking covert intrusions: Detection of fault-masking cyberattacks on differential protection systems,
A. M. Saber, A. Youssef, D. Svetinovic, H. Zeineldin, and E. F. El- Saadany, “Unmasking covert intrusions: Detection of fault-masking cyberattacks on differential protection systems,”IEEE Transactions on Systems, Man, and Cybernetics: Systems, 2024
2024
-
[22]
Optimal defensive strategy for power distribution systems against relay setting attacks,
M. Ganjkhani, M. M. Hosseini, and M. Parvania, “Optimal defensive strategy for power distribution systems against relay setting attacks,” IEEE Transactions on Power Delivery, vol. 38, no. 3, pp. 1499–1509, 2022
2022
-
[23]
Exploiting vulnerabilities of load forecasting through adversarial attacks,
Y . Chen, Y . Tan, and B. Zhang, “Exploiting vulnerabilities of load forecasting through adversarial attacks,” inProceedings of the tenth ACM international conference on future energy systems, 2019, pp. 1–11
2019
-
[24]
Evasion attacks with ad- versarial deep learning against power system state estimation,
A. Sayghe, J. Zhao, and C. Konstantinou, “Evasion attacks with ad- versarial deep learning against power system state estimation,” in2020 IEEE Power & Energy Society General Meeting (PESGM). IEEE, 2020, pp. 1–5
2020
-
[25]
Towards adversarial- resilient deep neural networks for false data injection attack detection in power grids,
J. Li, Y . Yang, J. Sun, K. Tomsovic, and H. Qi, “Towards adversarial- resilient deep neural networks for false data injection attack detection in power grids,” in2021 32nd International Conference on Computer Communications and Networks (ICCCN). IEEE, 2021, pp. 1–10
2021
-
[26]
Adaptedge: Targeted universal adversarial attacks on time series data in smart grids,
S. U. Khan, M. Mynuddin, and M. Nabil, “Adaptedge: Targeted universal adversarial attacks on time series data in smart grids,”IEEE Transactions on Smart Grid, 2024
2024
-
[27]
Adversarial attacks and defense for cnn based power quality recognition in smart grid,
J. Tian, B. Wang, J. Li, and Z. Wang, “Adversarial attacks and defense for cnn based power quality recognition in smart grid,”IEEE Transac- tions on Network Science and Engineering, vol. 9, no. 2, pp. 807–819, 2021
2021
-
[28]
Cybersecurity anal- ysis of data-driven power system stability assessment,
Z. Zhang, K. Zuo, R. Deng, F. Teng, and M. Sun, “Cybersecurity anal- ysis of data-driven power system stability assessment,”IEEE Internet of Things Journal, vol. 10, no. 17, pp. 15 723–15 735, Sep 2023
2023
-
[29]
Robustness verification for machine-learning-based power system dynamic security assessment models under adversarial examples,
C. Ren and Y . Xu, “Robustness verification for machine-learning-based power system dynamic security assessment models under adversarial examples,”IEEE Transactions on Control of Network Systems, vol. 9, no. 4, pp. 1645–1654, Dec 2022
2022
-
[30]
Vulnerability analysis robustness verification and mitigation strategy for machine 12 learning-based power system stability assessment model under adver- sarial examples,
C. Ren, X. Du, Y . Xu, Q. Song, Y . Liu, and R. Tan, “Vulnerability analysis robustness verification and mitigation strategy for machine 12 learning-based power system stability assessment model under adver- sarial examples,”IEEE Transactions on Smart Grid, vol. 13, no. 2, pp....
2022
-
[31]
On vulnerability of renewable energy forecasting: Ad- versarial learning attacks,
J. Ruanet al., “On vulnerability of renewable energy forecasting: Ad- versarial learning attacks,”IEEE Transactions on Industrial Informatics, vol. 20, no. 3, pp. 3650–3663, Mar 2024
2024
-
[32]
Vulnerability and impact of machine learning-based inertia forecasting under cost-oriented data integrity attack,
Y . Chen, M. Sun, Z. Chu, S. Camal, G. Kariniotakis, and F. Teng, “Vulnerability and impact of machine learning-based inertia forecasting under cost-oriented data integrity attack,”IEEE Transactions on Smart Grid, vol. 14, no. 3, pp. 2275–2287, May 2023
2023
-
[33]
Attack on grid event cause analysis: An adversarial machine learning approach,
I. Niazazari and H. Livani, “Attack on grid event cause analysis: An adversarial machine learning approach,” in2020 IEEE Power Energy Society Innovative Smart Grid Technologies Conference (ISGT). IEEE, 2020, pp. 1–5
2020
-
[34]
Physics- constrained vulnerability assessment of deep reinforcement learning- based scopf,
L. Zeng, M. Sun, X. Wan, Z. Zhang, R. Deng, and Y . Xu, “Physics- constrained vulnerability assessment of deep reinforcement learning- based scopf,”IEEE Transactions on Power Systems, vol. 38, no. 3, pp. 2690–2704, May 2023
2023
-
[35]
Adversarial examples on power systems state estimation,
A. Sayghe, O. M. Anubi, and C. Konstantinou, “Adversarial examples on power systems state estimation,” in2020 IEEE Power & Energy Society Innovative Smart Grid Technologies Conference (ISGT). IEEE, 2020, pp. 1–5
2020
-
[36]
Adversarial attack and defense methods for neural network based state estimation in smart grid,
J. Tianet al., “Adversarial attack and defense methods for neural network based state estimation in smart grid,”IET Renewable Power Generation, vol. 16, no. 16, pp. 3507–3518, 2022
2022
-
[37]
Saadat,Power system analysis
H. Saadat,Power system analysis. McGraw-hill, 1999, vol. 2
1999
-
[38]
SEL-411L Advanced Line Differential Protection, Automation, and Control System, Schweitzer Engineering Laboratories, Inc., W A, USA,
-
[39]
Vulnera- bilities and security issues in optical networks,
M. Furdek, N. Skorin-Kapov, S. Zsigmond, and L. Wosinska, “Vulnera- bilities and security issues in optical networks,”2014 16th International Conference on Transparent Optical Networks (ICTON), pp. 1–4, 2014
2014
-
[40]
Tapping into fibre optical cables,
B. Everett, “Tapping into fibre optical cables,”Network Security, vol. 207, no. 5, pp. 13–16, May 2007
2007
-
[41]
Cybersecurity test-bed for IEC 61850 based smart substations,
Y . Yang, H. Jiang, K. McLaughlin, L. Gao, Y . Yuan, W. Huang, and S. Sezer, “Cybersecurity test-bed for IEC 61850 based smart substations,” in2015 IEEE Power & Energy Society General Meeting. IEEE, 2015, pp. 1–5
2015
-
[42]
Toward threat of implementation attacks on substation security: Case study on fault detection and isolation,
A. Chattopadhyay, A. Ukil, D. Jap, and S. Bhasin, “Toward threat of implementation attacks on substation security: Case study on fault detection and isolation,”IEEE Transactions on Industrial Informatics, vol. 14, no. 6, pp. 2442–2451, 2017
2017
-
[43]
Tcp veto: A novel network attack and its application to scada protocols,
T. John and E. Barry, “Tcp veto: A novel network attack and its application to scada protocols,”Innovative Smart Grid Technologies (ISGT), IEEE PES, 2013
2013
-
[44]
On the security of public key protocols,
D. Dolev and A. C. Yao, “On the security of public key protocols,” in 22nd Annual Symposium on Foundations of Computer Science (SFCS 1981), 1981, pp. 350–357
1981
-
[45]
Deep learning for time series classification: a review,
H. Ismail Fawaz, G. Forestier, J. Weber, L. Idoumghar, and P.-A. Muller, “Deep learning for time series classification: a review,”Data mining and knowledge discovery, vol. 33, no. 4, pp. 917–963, 2019
2019
-
[46]
Deep learning,
Y . LeCun, Y . Bengio, and G. Hinton, “Deep learning,”Nature, vol. 521, no. 7553, pp. 436–444, 2015
2015
-
[47]
Review of deep learning: concepts, cnn architectures, challenges, applications, future directions,
L. Alzubaidi, J. Zhang, A. J. Humaidiet al., “Review of deep learning: concepts, cnn architectures, challenges, applications, future directions,” Journal of big Data, vol. 8, pp. 1–74, 2021
2021
-
[48]
Guidelines for smart grid cybersecu- rity,
V . Y . Pillitteri and T. L. Brewer, “Guidelines for smart grid cybersecu- rity,” 2014
2014
-
[49]
Towards deep learning models resistant to adversarial attacks,
A. M ˛ adry, A. Makelov, L. Schmidt, D. Tsipras, and A. Vladu, “Towards deep learning models resistant to adversarial attacks,”stat, vol. 1050, no. 9, 2017
2017
-
[50]
Design of benchmark of medium voltage distribution network for investigation of dg integration,
K. Rudion, A. Orths, Z. A. Styczynski, and K. Strunz, “Design of benchmark of medium voltage distribution network for investigation of dg integration,” in2006 IEEE power engineering society general meeting. IEEE, 2006, pp. 1–6
2006
-
[51]
Protection of inverter-based islanded microgrids via synthetic harmonic current pattern injection,
K. Saleh, M. Allam, and A. Mehrizi-Sani, “Protection of inverter-based islanded microgrids via synthetic harmonic current pattern injection,” IEEE Transactions on Power Delivery, vol. 36, no. 4, pp. 2434–2445, August 2021
2021
-
[52]
Available: https://www
GE Multilin,L90 Line Differential – UR Series Instruction Man- ual, Markham, ON, Canada, 2006, [Online]. Available: https://www. gegridsolutions.com/products/manuals/l90/l90man-m2.pdf
2006
-
[53]
Development of a cyber- resilient line current differential relay,
A. Ameli, A. Hooshyar, and E. F. El-Saadany, “Development of a cyber- resilient line current differential relay,”IEEE Transactions on Industrial Informatics, vol. 15, no. 1, pp. 305–318, 2019
2019
-
[54]
A new method of current-transformer saturation detection in the pres- ence of noise,
B. M. Schettino, C. A. Duque, P. Silveira, P. F. Ribeiro, and A. Cerqueira, “A new method of current-transformer saturation detection in the pres- ence of noise,”IEEE transactions on power delivery, vol. 29, no. 4, pp. 1760–1767, 2014
2014
-
[55]
TSAI - a state-of-the-art deep learning library for time series and sequential data,
I. Oguiza, “TSAI - a state-of-the-art deep learning library for time series and sequential data,” Github, 2023. [Online]. Available: https://github.com/timeseriesAI/tsai
2023
-
[56]
Available: https: //wiki.opal-rt.com/display/HDGD/OP5700
OPAL-RT Technologies, Inc., “Op5700,” [Online]. Available: https: //wiki.opal-rt.com/display/HDGD/OP5700
-
[57]
A practical approach to line current differential testing,
K. Zimmerman and D. Costello, “A practical approach to line current differential testing,” inproceedings of the 66th Annual Conference for Protective Relay Engineers, College Station, TX, 2013. Ahmad Mohammad Saber(M’21) received the B.Sc. degree from Ain Shams University, Egy...
2013
-
[1997]
He is currently a Professor with the Concordia Institute for Information Systems Engineering, Concordia Uni- versity, Montreal, Canada
He was with Nortel Networks, the Center for Applied Cryptographic Research, University of Waterloo, IBM, and also with Cairo University. He is currently a Professor with the Concordia Institute for Information Systems Engineering, Concordia Uni- versity, Montreal, Canada. He h...
2010
-
[2021]
Available: https://selinc.com/products/411L/
[Online]. Available: https://selinc.com/products/411L/
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.